curl --request GET \
--url https://api.comm.com/api/v1/voice/calls/stats \
--header 'Authorization: Bearer <token>'
{
"data": {
"calls": 123,
"no_answer": 123,
"leads": 123,
"answered": 123,
"answer_machine": 123
}
}
curl --request GET \
--url https://api.comm.com/api/v1/voice/calls/stats \
--header 'Authorization: Bearer <token>'
{
"data": {
"calls": 123,
"no_answer": 123,
"leads": 123,
"answered": 123,
"answer_machine": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.