Export Vobiz recordings matching filter criteria as a downloadable archive sent via email - async job for bulk historical data delivery.
curl --request POST \
--url https://api.example.com/api/v1/account/{auth_id}/export/recording/Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/
X-Auth-ID - Your account auth_id (e.g., {auth_id})X-Auth-Token - Your account Auth TokenContent-Type: application/json| 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"] |
| 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. |
| 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. |
| 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. |
from_number, to_number, etc.) only apply when your date range or storage duration range is 30 days or less.from/to with storage duration filters__gt and __gte together (choose one)__lt and __lte together (choose one)__gte/__lte), both must be provided{
"api_id": "correlation-id-uuid",
"status": "success"
}
{
"status": "failure",
"message": "An Export Historic Recording request is already in process. Please try again in sometime."
}
{
"status": "failure",
"message": "From/To cannot be used with recording storage duration"
}
curl -X POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": "2025-01-23 00:00:00",
"to": "2025-01-30 23:59:59",
"recipient": {
"customer_account": ["admin@example.com"]
}
}'
curl -X POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"recording_storage_duration": "7",
"recipient": {
"customer_account": ["admin@example.com"]
}
}'
curl -X POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"recording_storage_duration__gte": "7",
"recording_storage_duration__lte": "30",
"recipient": {
"customer_account": ["admin@example.com"]
}
}'
curl -X POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": "2025-01-01 00:00:00",
"to": "2025-01-30 23:59:59",
"conference_name": "TeamMeeting",
"recording_format": "mp3",
"recipient": {
"customer_account": ["admin@example.com", "backup@example.com"]
}
}'
curl -X POST https://api.vobiz.ai/api/v1/account/{auth_id}/export/recording/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": "2025-01-15 00:00:00",
"to": "2025-01-30 23:59:59",
"from_number": "+14155551234",
"recipient": {
"customer_account": ["admin@example.com"]
}
}'
Was this page helpful?
curl --request POST \
--url https://api.example.com/api/v1/account/{auth_id}/export/recording/