Skip to main content

open()

Opens the Solvvy widget.

Syntax

open(options)

Parameters

options (optional)

Is an Object with the following properties:

workflowId

A string containing the id of the workflow to automatically start when Solvvy opens.

Examples

Open Solvvy on button click

<button onclick='Solvvy.open()'>Open Solvvy Widget</button>

Open Solvvy and launch workflow

Solvvy.open({
workflowId: 'workflow-id',
});
info

Click on the button found in the examples to try it out on the solvvy widget found on the page and to see how each api method works.