Begin recording all audio in a conference room.
curl --request POST \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Record/ \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"file_format": "mp3",
"callback_url": "<string>"
}
'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}/Conference/{conference_name}/Record/
| Parameter | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your Vobiz account ID |
conference_name | string | Yes | Name of the conference to record |
| Field | Type | Required | Description |
|---|---|---|---|
file_format | string | No | Recording format. Values: mp3, wav. Default: mp3 |
recording_callback_url | string | No | URL to receive recording completion callback |
recording_callback_method | string | No | HTTP method for callback. Values: POST, GET. Default: POST |
curl -X POST https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/MyConf/Record/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json"
{
"message": "conference recording started",
"api_id": "b0e8d7f2-58c4-11e1-86da-adf28403fe48",
"recording_id": "rec_abc123def456",
"url": "https://s3.amazonaws.com/recordings/rec_abc123def456.mp3"
}
recording_callback_url receives:
{
"conference_name": "MyConf",
"recording_id": "rec_abc123def456",
"recording_url": "https://s3.amazonaws.com/recordings/rec_abc123def456.mp3",
"recording_duration": 1200,
"file_format": "mp3"
}
recording_id for future reference and download recordings to your own storage for long-term retention.Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
Recording started
Was this page helpful?
curl --request POST \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Conference/{conference_name}/Record/ \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"file_format": "mp3",
"callback_url": "<string>"
}
'