Skip to main content
GET
/
org
/
{org_id}
/
workflows
/
{workflow_id}
/
batches
List workflow batches
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/workflows/{workflow_id}/batches
{
  "data": [
    {
      "created_at": "<string>",
      "created_by": "<string>",
      "id": "<string>",
      "name": "<string>",
      "organization_id": "<string>",
      "scheduled_at": "<string>",
      "source_type": "<string>",
      "stats": {
        "cancelled_count": 123,
        "failed_count": 123,
        "finished_count": 123,
        "in_progress_count": 123,
        "paused_count": 123,
        "pending_count": 123,
        "total_count": 123
      },
      "status": "<string>",
      "total_prospects": 123,
      "updated_at": "<string>",
      "workflow_id": "<string>",
      "workflow_version_id": "<string>",
      "workflow_version_number": 123
    }
  ],
  "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

Response

OK

data
object[]
pagination
object