Skip to main content
GET
/
org
/
{org_id}
/
workflows
/
{workflow_id}
/
runs
List workflow runs by workflow
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/workflows/{workflow_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
  }
}

Path Parameters

org_id
string
required

Organization ID

workflow_id
string
required

Workflow ID

Query Parameters

page
integer
default:1

Page number

limit
integer
default:20

Items per page

status
string

Filter by status (PENDING, IN_PROGRESS, PAUSED, FINISHED, CANCELLED, FAILED)

prospect_id
string

Filter by prospect ID

batch_id
string

Filter by batch ID

workflow_version_id
string

Filter by workflow version ID

start_date
string

Filter runs started after this date (RFC3339 format)

end_date
string

Filter runs started before this date (RFC3339 format)

sort
string

Sort order (started_asc, started_desc, status_asc, status_desc)

Response

OK

data
object[]
pagination
object