Skip to main content
POST
/
workflows
/
{workflowId}
/
trigger
cURL
curl --request POST \
  --url https://workflows.pingmee.co.il/workflows/{workflowId}/trigger \
  --header 'Content-Type: application/json' \
  --header 'Cookie: <api-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "participantsIdentifiers": "<string>",
  "startFromNodeId": "<string>"
}
'
{
  "ok": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.pingmee.co.il/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

workflowId
string
required

Workflow identifier.

Body

application/json

Conversation and optional node to start the workflow from.

participantsIdentifiers
string
required

Unique identifiers of the conversation participants.

startFromNodeId
string

Optional workflow node identifier to start execution from.

Response

Workflow triggered successfully

ok
boolean
required
Example:

true