Skip to main content
GET
/
partner
/
voice
/
calls
/
aggregates
Get voice call aggregates per tenant
curl --request GET \
  --url https://api.embedreach.com/partner/voice/calls/aggregates
{
  "success": true,
  "message": "<string>",
  "data": {
    "results": [
      {
        "tenantExternalId": "<string>",
        "tenantName": "<string>",
        "totalCalls": 123,
        "transferredCount": 123,
        "totalDurationSecs": 123,
        "avgDurationSecs": 123,
        "totalCostCents": 123,
        "sentimentPositive": 123,
        "sentimentNegative": 123,
        "sentimentNeutral": 123
      }
    ],
    "pagination": {
      "hasNextPage": true,
      "cursor": "<string>",
      "total": 123
    }
  }
}

Headers

reach-tenant-id
string

Optional tenant ID to filter aggregates to a single tenant.

Query Parameters

cursor
string
limit
integer
default:25
Required range: 0 < x <= 100
startDate
string | null
endDate
string | null

Response

Status 200 response

success
boolean
required
message
string
data
object