Endpoints
Dashboard & Analytics
Access aggregated usage metrics and date-range analytics across your Vobiz reseller ecosystem - live dashboard summary and flexible reporting endpoints.
GET
Get dashboard summary
← Partner API Reference
Two endpoints provide aggregated intelligence across your entire reseller ecosystem - a live dashboard summary for high-level health checks, and a flexible analytics endpoint for date-range performance reporting.
All Partner API requests use
X-Auth-ID and X-Auth-Token headers. See Authentication for details.Overview
| Endpoint | What it returns | Best for |
|---|---|---|
/dashboard | Live counts, balances, today’s call volume | Main UI landing page, health checks |
/analytics | Aggregated call metrics, cost, top spenders | Billing cycles, customer reports, trend analysis |
Partner Dashboard
Returns a high-level snapshot of your partner account, including total active customer accounts, combined wallet balances, total calls today, and platform-level status indicators.Response fields
| Field | Notes |
|---|---|
partner | Your partner profile snapshot. Note partner.balance is null here - read total_balance (below) for the aggregate held across customers. |
period | The from / to window the metrics cover. |
accounts | total, active, and a customers[] list (each with auth_id, name, email, phone, is_active, created_at). |
total_balance | Combined wallet balance held across all customers, as a string. |
calls | Roll-up: total_calls, answered_calls, total_minutes, total_cost. |
traffic | The same roll-up split into inbound and outbound. |
by_product | The same roll-up split into sip_trunking and voice_api. |
time_series[] | Per-day metrics with nested inbound / outbound counts. |
Partner Analytics
Returns aggregated call analytics across all customer accounts. Defaults to the last 30 days. Passfrom_date and to_date for a custom window. Use for billing cycle audits, identifying top-spending customers, and call volume trend analysis.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
from_date | string | Optional | Start date in YYYY-MM-DD format. Defaults to 30 days ago. |
to_date | string | Optional | End date in YYYY-MM-DD format. Defaults to today. |
Default - Last 30 Days
Custom Date Range
Response
Use Cases
- Monthly billing cycle - Pull analytics for the billing month to calculate total usage (
calls.total_cost,calls.total_minutes), generate invoices, and reconcile against your transaction ledger. - Answer-rate analysis - Track
calls.answered_calls / calls.total_callsover time (or per-day viatime_series) to spot network quality or configuration problems. - Inbound vs. outbound split - Use
traffic.inboundvstraffic.outboundto understand your base - outbound-heavy customers have different pricing and capacity needs than inbound-heavy ones. - Product mix - Use
by_productto see how usage splits betweensip_trunkingandvoice_apiacross your ecosystem.
Authorizations
Your Vobiz account Auth ID
Your Vobiz account Auth Token