vobiz-cdr
Installation
SKILL.md
Vobiz CDR skill
Use this for call history, billing reconciliation, quality analysis, or analytics. A CDR is written after a call completes - it is not available mid-call. Poll the list/recent endpoints, or use trunk webhooks for real-time events.
Base URL: https://api.vobiz.ai. Auth headers on every request: X-Auth-ID and X-Auth-Token.
Endpoints
| Op | Path | Notes |
|---|---|---|
| List | GET /api/v1/Account/{auth_id}/cdr |
Filter by from/to number, date range, direction, min_duration; paginated; includes summary |
| Search | GET /api/v1/Account/{auth_id}/cdr/search |
Same filters + adds a filters echo of the active filter values |
| Recent | GET /api/v1/Account/{auth_id}/cdr/recent |
Last 20 by default (limit to change). No pagination, no summary, no filters |
| Export | GET /api/v1/Account/{auth_id}/cdr/export |
Returns text/csv, not JSON. Same filters as list (no page/per_page) |
| Get one | GET /api/v1/Account/{auth_id}/cdr/{call_id} |
Path param is named call_id; pass the call's uuid from a list/webhook |
auth_id is your master account ID (MA_XXXXXXXX). The path segment is Account (capital A) followed by lowercase cdr - match the casing exactly.