POST
/
workflow
/
runWorkflow
curl --request POST \
  --url https://svalync.com/api/workflow/runWorkflow \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "callId": "<string>"
}'
{
  "response": [
    {
      "nodeId": "<string>",
      "input": {
        "name": "<string>",
        "imageURL": "<string>",
        "description": "<string>",
        "loading": true,
        "isConnected": true,
        "actions": [
          [
            {
              "option": {
                "label": "<string>",
                "value": "<string>"
              },
              "inputs": [
                [
                  {
                    "type": "<string>",
                    "required": true,
                    "name": "<string>",
                    "label": "<string>",
                    "defaultValue": "<string>",
                    "value": "<string>",
                    "options": [
                      [
                        {
                          "label": "<string>",
                          "value": "<string>"
                        }
                      ]
                    ]
                  }
                ]
              ],
              "responses": {
                "batch_id": "<string>",
                "isTestMode": true,
                "state": "<string>"
              },
              "action": "<string>",
              "type": "<string>",
              "msg": "<string>"
            }
          ]
        ],
        "actionEntityAction": "<string>"
      },
      "response": {
        "batch_id": "<string>",
        "state": "<string>"
      }
    }
  ]
}

Authorization

x-api-key
string
required

Your Api Key

Params

id
string
required

The workflow id for the user initiating the flow. Click here to know how to get workflow id.

Payload

The payload is dynamic and depends on the first node of the workflow. For instance, if the first node involves voice AI and Get Call Action, the payload should include the necessary input values for these actions.

callId
string
required

The unique identifier of the call

Response

response
array