Workflows
Execute Workflow
Execute a deployed workflow. Supports synchronous, asynchronous, and streaming modes. For async execution, the response includes a statusUrl you can poll for results.
post/api/workflows/{id}/execute
Path parameters
idstring required
Example:3b1f7c92-8d4e-4a6b-9c0d-5e2f8a714b36
The unique identifier of the deployed workflow to execute.
Request body
Response
Synchronous execution completed successfully.
Example response
{
"success": true,
"executionId": "e4f8d2b6-9a1c-4e3d-8b7f-5c0a2d9e6f13",
"output": {
"result": "Hello, world!"
},
"metadata": {
"duration": 1250,
"startTime": "2025-06-20T14:15:22Z",
"endTime": "2025-06-20T14:15:23Z"
}
}