GET /v1/workflow-executionsworkflow_uuid or workflow_uuids[]workspace_uuid or organization_multiplai_idworkspace_uuid takes precedence over organization_multiplai_id when both providedcreated_at or updated_atwith=workflow,workflowExecutionDatawith_count=workflowApprovals,pendingWorkflowApprovalsGET /v1/workflow-executions/{uuid}POST /v1/workflow-executionsPUT/PATCH /v1/workflow-executions/{uuid}DELETE /v1/workflow-executions/{uuid}POST /v1/workflow-executions/{uuid}/stopGET /v1/workflow-executions/countworkspace_uuid or multiplai_id, start_date, end_datestatus, requires_human_review, has_command_room_taskstatus=running to see currently executing workflowswith_count=pendingWorkflowApprovals to identify executions awaiting approvalwith=workflowExecutionData to inspect detailed execution logsorganization_multiplai_id to aggregate execution data across multiple workspacescurl --location -g --request GET 'https://localhost/api/v1/workflow-executions?workspace_uuid={{workspace_uuid}}&organization_multiplai_id=org-123&user_multiplai_id=user-123&workflow_uuid={{workflow_uuid}}&workflow_uuids=uuid1&workflow_uuids=uuid2&search=&page=&sort_by=&sort_direction=&date_from=2025-01-01&date_to=2025-01-31&with=&with_count=' \
--header 'X-Multiplai-Authorization;' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 1,
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
"is_finished": true,
"mode": "string",
"retry_of": "string",
"retry_success_id": "string",
"started_at": "2019-08-24T14:15:22.123Z",
"stopped_at": "2019-08-24T14:15:22.123Z",
"wait_till": "2019-08-24T14:15:22.123Z",
"status": "pending",
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z",
"deleted_at": "2019-08-24T14:15:22.123Z",
"workflow": {
"id": 42,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"user_id": 15,
"workspace_id": 3,
"template_id": null,
"name": "Customer Onboarding Flow",
"description": "Automated workflow for onboarding new customers",
"profile_photo_url": null,
"profile_photo_config": null,
"visibility": "workspace",
"is_active": true,
"is_owner": true,
"is_favorite": false,
"trigger_count": 2,
"allow_cloning": true,
"allow_account_usage": false,
"last_used_at": "2026-02-10T14:30:00.000000Z",
"created_at": "2026-01-15T10:00:00.000000Z",
"updated_at": "2026-02-10T09:15:00.000000Z",
"deleted_at": null,
"executions_count": 156,
"executions_in_progress_count": 3,
"executions_for_review_count": 7,
"executions_completed_count": 142
},
"workflow_execution_data": [
{
"uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
"workflow_data": [
{
"status": "error",
"output": {},
"started_at": "2019-08-24T14:15:22.123Z",
"stopped_at": "2019-08-24T14:15:22.123Z"
}
],
"metadata": {
"running_node": "string",
"workflow_execution_data_id": 1,
"execution_time": 0,
"wait_until": "2019-08-24T14:15:22.123Z",
"wait_until_timestamp": 0,
"wait_started_at": "2019-08-24T14:15:22.123Z",
"wait_completed_at": "2019-08-24T14:15:22.123Z",
"loop_index": 0,
"processed_count": 0,
"error_count": 0,
"retry_count": 0,
"property1": "string",
"property2": "string"
},
"data": "string",
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z",
"deleted_at": "2019-08-24T14:15:22.123Z"
}
]
}
],
"meta": {
"current_page": 3,
"from": 21,
"last_page": 10,
"per_page": 20,
"to": 40,
"total": 195,
"path": "https://api.example.com/users"
},
"links": {
"first": "https://api.example.com/users?page=1",
"last": "https://api.example.com/users?page=10",
"prev": "https://api.example.com/users?page=2",
"next": "https://api.example.com/users?page=4"
}
}