Skip to main content
GET
/
org
/
{org_id}
/
analytics
/
calls
Get call analytics
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/analytics/calls
{
  "duration": {
    "avg_duration_seconds": 123,
    "max_duration_seconds": 123,
    "total_calls": 123,
    "total_duration_seconds": 123
  },
  "outcomes": [
    {
      "negative": 123,
      "outcome_key": "<string>",
      "positive": 123,
      "positive_rate_pct": 123,
      "total": 123
    }
  ],
  "period": {
    "end": "<string>",
    "start": "<string>"
  },
  "time_series": [
    {
      "busy": 123,
      "completed": 123,
      "date": "<string>",
      "failed": 123,
      "no_answer": 123,
      "total": 123
    }
  ]
}

Path Parameters

org_id
string
required

Organization ID

Query Parameters

start_date
string

Start date (ISO 8601)

end_date
string

End date (ISO 8601)

Response

OK

duration
object
outcomes
object[]
period
object
time_series
object[]