Export CDRs as CSV
Export Vobiz call detail records as a CSV file for billing reconciliation, compliance auditing, and traffic analysis - returns text/csv content directly.
Filters
Export accepts the same filters as the list endpoint, minus paging. There is nopage or per_page; the file contains every matching row.
| Parameter | Type | Notes |
|---|---|---|
from_number | string | Originating (caller) number. Substring or full E.164. |
to_number | string | Destination (callee) number. |
start_date | string YYYY-MM-DD | Required together with end_date. |
end_date | string YYYY-MM-DD | Required together with start_date. |
call_direction | enum | inbound or outbound. |
min_duration | integer | Seconds; excludes shorter calls. |
Response
- Content type is
text/csv. The columns mirror the CDR object fields (see the field glossary). - An empty match still returns
200with a header-only (or empty) CSV body - not a404.
Example
Authorizations
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Path Parameters
Your account Auth ID
"MA_XXXXXX"
Query Parameters
Filter by the originating phone number (caller).
"9876543210"
Filter by the destination phone number (callee).
"1234567890"
Beginning of the search period (YYYY-MM-DD). Required when using end_date.
"2026-03-01"
End of the search period (YYYY-MM-DD). Required when using start_date.
"2026-03-17"
Filter by direction.
inbound, outbound Minimum call duration in seconds. Excludes calls shorter than this value.
10
Response
CSV file containing CDR rows
The response is of type file.