Skip to main content

Trigger a workflow

POST 

/api/v1/orgs/:orgID/workflows/:workflowID/trigger

Manually trigger a workflow template to create and execute a new workflow instance.

Workflow Inputs: Include any JSON properties that your workflow expects as inputs.

Example Payload:

{
"customer_name": "John Doe",
"order_amount": 99.99,
"priority": "high"
}

Response: Returns the workflow instance ID that can be used to track the workflow execution status.

Request

Responses

Workflow triggered successfully