Audio Files
Update audio file with upload
Update the content of an existing audio file. The content will be processed asynchronously. The status property of the updated audio file will transition through the following stages:
- pending-conversion
- processing
- Finally, it will be either ready or error
The supported formats are audio/flac, audio/mpeg, audio/mp4, audio/ogg, audio/wav.
You can use webhooks to receive updates on the status.
put/audio-files/{sid}/file
Path parameters
sidstring required
Short ID
Example:callrsid
Resource SID (8 lowercase alphanumeric characters)
Response
Audio file updating
Example response
{
"sid": "callrsid",
"name": "My Audio File",
"duration": 42,
"source": "system",
"url": "https://media.callr.com/library/1214981-F54777F6.mp3",
"readonly": true,
"status": "ready",
"created": "2024-04-24T17:42:28Z",
"updated": "2024-04-24T17:42:28Z"
}