GET
/
v1
/
voice
/
calls
/
dashboard
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/voice/calls/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "total_calls": 123,
    "answered_calls": 123,
    "picked_up_calls": 123,
    "leads": 123,
    "sales": 123,
    "answer_machines": 123,
    "total_cost": 123,
    "total_duration_sec": 123,
    "average_call_duration": 123,
    "answer_rate": 123,
    "lead_rate": 123,
    "sales_rate": 123,
    "hourly_breakdown": [
      "<any>"
    ],
    "daily_breakdown": [
      "<any>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from_date
string
to_date
string
agent_id
string<uuid>
voice_campaign_id
string<uuid>

Response

200
application/json

The response is of type object.