Recordings
Export Historical Recordings
Export Vobiz call recordings matching filter criteria as a downloadable archive delivered via email - async background job for bulk historical data retrieval.
POST
Export Historical Recordings
Authentication required:
X-Auth-ID- Your account auth_id (e.g.,{auth_id})X-Auth-Token- Your account Auth TokenContent-Type: application/json
Async Operation Workflow:
- Request is validated and queued as async task
- System processes recordings matching your filters
- Recordings are packaged as downloadable archive
- Download link is emailed to all recipient addresses
- Archive typically available within 15-60 minutes depending on volume
Request Body
Required Parameters
| Field | Type | Required | Description |
|---|---|---|---|
recipient.customer_account | array | Yes | Array of email addresses to receive the download link. All emails must be in valid format. Example: ["admin@example.com", "user@example.com"] |
Date Range Filters (Option 1)
| Field | Type | Required | Description |
|---|---|---|---|
from | string | No | Start date for export. Format: YYYY-MM-DD HH:MM:SS. Defaults to 7 days ago if not specified. |
to | string | No | End date for export. Format: YYYY-MM-DD HH:MM:SS. Defaults to current time if not specified. |
Storage Duration Filters (Option 2 - Alternative to Date Range)
| Field | Type | Required | Description |
|---|---|---|---|
recording_storage_duration | string | No | Export recordings exactly N days old. Example: "7" = recordings from exactly 7 days ago. |
recording_storage_duration__gte | string | No | Export recordings N days old or older. Example: "7" = recordings 7+ days old. |
recording_storage_duration__gt | string | No | Export recordings older than N days. Example: "7" = recordings 8+ days old. |
recording_storage_duration__lte | string | No | Export recordings N days old or newer. Example: "30" = recordings 0-30 days old. |
recording_storage_duration__lt | string | No | Export recordings newer than N days. Example: "30" = recordings 0-29 days old. |
Additional Filters (Only for ranges ≤ 30 days)
| Field | Type | Required | Description |
|---|---|---|---|
from_number | string | No | Filter by caller phone number. |
to_number | string | No | Filter by destination phone number. |
call_uuid | string | No | Filter by call UUID (also use for conference_uuid or mpc_uuid). |
conference_name | string | No | Filter by conference name (also use for mpc_name). |
recording_format | string | No | Filter by format. Values: “mp3”, “wav”. |
recording_id | string | No | Filter by specific recording ID. |
Additional filters (
from_number, to_number, etc.) only apply when your date range or storage duration range is 30 days or less.Constraints & Validation
Response
Success Response (202 Accepted)
The export request has been queued and will be processed in the background.Response - 202 Accepted
Error Response (403 Forbidden)
Another export is already in progress.Response - 403 Forbidden
Error Response (400 Bad Request)
Invalid request parameters.Response - 400 Bad Request
Examples
Export Last 7 Days (Date Range)
cURL
Export Using Storage Duration
Export recordings exactly 7 days old.cURL
Export with Storage Duration Range
Export recordings between 7 and 30 days old.cURL
Export with Filters (Conference Recordings)
Export conference recordings in MP3 format from last 30 days.cURL
Export with Phone Number Filter
cURL
For large date ranges (greater than 30 days), do not use additional filters. Export in smaller batches if you need filtered results.
Email Delivery:
- Check spam/junk folders if not received within 1 hour
- Verify email addresses are valid before requesting
- Use multiple recipients for redundancy
- Wait for completion email before starting another export