Authorizations
Body
application/json
curl --request POST \
--url https://app.herondata.io/api/workflow/start \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"end_user_heron_id": "<string>",
"workflow_heron_id": null,
"workflow_parameters": {}
}'
{
"action": "<string>",
"status": "<string>",
"workflow_execution_id": "<string>",
"workflow_id": "<string>"
}
Start a workflow by heron_id for an end user, or start the default workflow if no workflow_heron_id provided
curl --request POST \
--url https://app.herondata.io/api/workflow/start \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"end_user_heron_id": "<string>",
"workflow_heron_id": null,
"workflow_parameters": {}
}'
{
"action": "<string>",
"status": "<string>",
"workflow_execution_id": "<string>",
"workflow_id": "<string>"
}
Was this page helpful?