API referencePipeline
Execute workflow
Create a new pipeline and start execution in one call. This is a convenience endpoint that combines pipeline creation with immediate execution. Returns the pipeline ID and initial status for tracking.
AuthorizationBearer <token>
JWT token for authentication
In: header
Path Parameters
id*string
Workflow UUID
Format
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/workflows/497f6eca-6276-4993-bfeb-53cbbbba6f08/execute" \ -H "Content-Type: application/json" \ -d '{}'{ "success": true, "message": "string", "error": "string", "data": { "execution_id": "02ca5b65-a269-4c45-8d4a-0c74ff3ae670", "status": "pending", "started_at": "2019-08-24T14:15:22Z", "estimated_completion": "2019-08-24T14:15:22Z" }}