get https://api-account-uk.acefone.com/v1/recordings
This API allows you fetch list of all recordings.
Sample Request
curl --request GET \
--url https://api-account-uk.acefone.com/v1/recordings \
--header 'accept: application/json'
š Important!
Before we begin, note that the * sign denotes the mandatory variables in each table.
Sample Response
[
{
"id": "166",
"name": "Thank You",
"music_on_hold": false,
"url": "https://s3.ap-south-1.amazonaws.com/console.acefone.in/ivr/1/5b681930cac43.mp3",
"default": true
},...
]
Response Variables
The response returned is as following:
Variable Name | Description | Data Type |
---|---|---|
id | Unique ID of the system recording. | String |
name | Name of the recording. | String |
music_on_hold | Id of the music on hold. | String |
url | Recording URL for the system recording. | String |
default | Whether the system recording uploaded is default or not. | Boolean |