Fetch details of all recordings

This API allows you fetch list of all recordings.

Sample Request

curl --request GET \
     --url https://api.servetel.in/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 response returned is as following:

Variable NameDescriptionData Type
idUnique ID of the system recording.String
nameName of the recording.String
music_on_holdId of the music on hold.String
urlRecording URL for the system recording.String
defaultWhether the system recording uploaded is default or not.Boolean
Language
Click Try It! to start a request and see the response here!