Skip to main content
GET
/
org
/
{org_id}
/
calls
List calls
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "agent_name": "<string>",
      "call_type": "<string>",
      "callback_for": "<string>",
      "direction": "<string>",
      "duration_seconds": 123,
      "ended_at": "<string>",
      "from_number": "<string>",
      "id": "<string>",
      "initial_agent_id": "<string>",
      "prospect_external_id": "<string>",
      "prospect_first_name": "<string>",
      "prospect_id": "<string>",
      "prospect_last_name": "<string>",
      "prospect_phone": "<string>",
      "scheduled_at": "<string>",
      "started_at": "<string>",
      "status": "<string>",
      "to_number": "<string>"
    }
  ],
  "meta": {
    "page": 123,
    "size": 123,
    "total": 123,
    "total_pages": 123
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

org_id
string
required

Organization ID

Query Parameters

page
integer
default:1

Page number

size
integer
default:50

Page size

Required range: x <= 100
status
string

Filter by status (SCHEDULED, RINGING, IN_PROGRESS, completed, no-answer, failed, busy)

direction
string

Filter by direction (INBOUND, OUTBOUND)

agent_id
string

Filter by agent ID

prospect_id
string

Filter by prospect ID

workflow_id
string

Filter by workflow ID

prospect_external_id
string

Filter by prospect external ID

prospect_name
string

Filter by prospect name (first or last)

start_date
string

Filter by start date (ISO 8601)

end_date
string

Filter by end date (ISO 8601)

min_duration
integer

Filter by minimum duration in seconds

phone
string

Search by phone number

evaluation_key
string

Filter by evaluation outcome key (e.g. is_interested)

evaluation_value
string

Filter by evaluation value (e.g. true, false, or extracted text)

Response

OK

data
object[]
meta
object