get https://api-smartflo.tatateleservices.com/v1/recordings
This API allows you fetch list of all recordings.
Sample Request
Use the below outlined method to retrieve lists of recordings:
curl --request GET \
--url https://api-smartflo.tatateleservices.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/customer.servetel.in/ivr/1/5b681930cac43.mp3",
"default": true
},...
]
Response Variables
The API fetches the below details:
Variable | Description | Data Type |
---|---|---|
id | The ID of the recording. For example, 1243. | String |
name | The name of the recording. For example, Test Recording 5. | String |
music_on_hold | The type of the recording. For example, True. | Boolean |
url | Recording URL for the system recording. | String |
default | Whether the system recording uploaded is default or not. | Boolean |