curl --request GET \
--url https://v2-nova-api.prod.czmx.in/org/{org_id}/runs{
"data": [
{
"batch_id": "<string>",
"batch_name": "<string>",
"current_step_id": "<string>",
"ended_at": "<string>",
"id": "<string>",
"prospect": {
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>"
},
"prospect_id": "<string>",
"started_at": "<string>",
"status": "<string>",
"workflow_id": "<string>",
"workflow_name": "<string>",
"workflow_version_id": "<string>"
}
],
"pagination": {
"limit": 123,
"page": 123,
"total": 123,
"total_pages": 123
}
}List all workflow runs within an organization with filtering and pagination
curl --request GET \
--url https://v2-nova-api.prod.czmx.in/org/{org_id}/runs{
"data": [
{
"batch_id": "<string>",
"batch_name": "<string>",
"current_step_id": "<string>",
"ended_at": "<string>",
"id": "<string>",
"prospect": {
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"phone": "<string>"
},
"prospect_id": "<string>",
"started_at": "<string>",
"status": "<string>",
"workflow_id": "<string>",
"workflow_name": "<string>",
"workflow_version_id": "<string>"
}
],
"pagination": {
"limit": 123,
"page": 123,
"total": 123,
"total_pages": 123
}
}Organization ID
Page number
Items per page
Filter by workflow ID
Filter by status (PENDING, IN_PROGRESS, PAUSED, FINISHED, CANCELLED, FAILED)
Filter by prospect ID
Filter by batch ID
Filter by workflow version ID
Filter runs started after this date (RFC3339 format)
Filter runs started before this date (RFC3339 format)
Sort order (started_asc, started_desc, status_asc, status_desc, workflow_asc, workflow_desc)