get https://api.acefone.co.uk/v1/recordings
Using the below method, all system recordings can be obtained.
curl --request GET \
--url https://api.acefone.co.uk/v1/recordings \
--header 'accept: application/json' \
--header 'authorization: Authorization'
Response
Variable Name | Description | Data Type |
---|---|---|
recording_id | ||
recording_name | ||
recording_added_by | ||
music_on_hold_id | ||
music_on_hold_name | ||
music_on_hold_added_by |
Sample JSON |
---|
{ "data":{ "recording":[ 0:{ "id":"83" "name":"test" "added_by":"291" } 1:{...} ] "music_on_hold":[ 0:{ "id":"5e81e5a419923" "name":"tes" "added_by":"291" } ] } } |