Skip to main content
GET
/
org
/
{org_id}
/
batches
/
{batch_id}
/
runs
List workflow runs
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/batches/{batch_id}/runs
{
  "data": [
    {
      "batch_id": "<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_version_id": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "page": 123,
    "total": 123,
    "total_pages": 123
  }
}

Path Parameters

org_id
string
required

Organization ID

batch_id
string
required

Batch ID

Query Parameters

page
integer
default:1

Page number

limit
integer
default:20

Items per page

status
string

Filter by status

Response

OK

data
object[]
pagination
object