Skip to main content
GET
https://dashboard.telzino.com
/
v1
/
billing-report
curl "https://dashboard.telzino.com/v1/billing-report?start_date=2025-01-01&end_date=2025-01-31" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": [
    {
      "organization_id": "123e4567-e89b-12d3-a456-426614174000",
      "organization_name": "Acme Solar",
      "reseller_id": "987fcdeb-51a2-3bc4-d567-890123456789",
      "reseller_name": "Partner Corp",
      "voice_minutes": 1250.5,
      "agent_count": 5
    },
    {
      "organization_id": "456e7890-e89b-12d3-a456-426614174001",
      "organization_name": "Best Plumbing",
      "reseller_id": "987fcdeb-51a2-3bc4-d567-890123456789",
      "reseller_name": "Partner Corp",
      "voice_minutes": 890.25,
      "agent_count": 3
    }
  ],
  "period": {
    "start_date": "01/01/2025",
    "end_date": "01/31/2025"
  }
}

Query Parameters

start_date
string
required
Start date in ISO format (YYYY-MM-DD).Example: 2025-01-01
end_date
string
required
End date in ISO format (YYYY-MM-DD).Example: 2025-01-31
reseller_ids
string
Filter by reseller IDs. Can be comma-separated or passed as array parameters.Example: reseller_ids=id1,id2 or reseller_ids[]=id1&reseller_ids[]=id2
organization_ids
string
Filter by organization IDs. Can be comma-separated or passed as array parameters.Example: organization_ids=id1,id2
curl "https://dashboard.telzino.com/v1/billing-report?start_date=2025-01-01&end_date=2025-01-31" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "data": [
    {
      "organization_id": "123e4567-e89b-12d3-a456-426614174000",
      "organization_name": "Acme Solar",
      "reseller_id": "987fcdeb-51a2-3bc4-d567-890123456789",
      "reseller_name": "Partner Corp",
      "voice_minutes": 1250.5,
      "agent_count": 5
    },
    {
      "organization_id": "456e7890-e89b-12d3-a456-426614174001",
      "organization_name": "Best Plumbing",
      "reseller_id": "987fcdeb-51a2-3bc4-d567-890123456789",
      "reseller_name": "Partner Corp",
      "voice_minutes": 890.25,
      "agent_count": 3
    }
  ],
  "period": {
    "start_date": "01/01/2025",
    "end_date": "01/31/2025"
  }
}

Response Fields

Data Array

FieldTypeDescription
organization_idstringOrganization UUID
organization_namestringDisplay name of the organization
reseller_idstringParent reseller UUID
reseller_namestringDisplay name of the reseller
voice_minutesnumberTotal voice minutes used in the period
agent_countnumberNumber of agents active in the period

Period Object

FieldTypeDescription
start_datestringStart date in US format (MM/DD/YYYY)
end_datestringEnd date in US format (MM/DD/YYYY)
Date Format: Input dates use ISO format (YYYY-MM-DD), but response dates are returned in US format (MM/DD/YYYY).