get https://api-account-uk.acefone.com/v1/auto_attendants
This API fetches a list of all the Auto Attendant.
Sample Request
curl --request GET \
     --url https://api-account-uk.acefone.com/v1/auto_attendants \
     --header 'accept: application/json'📘 Important!
Before we begin, note that the * sign denotes the mandatory variables in each table.
Sample Response
[
  {
    "id": "8257",
    "name": "June Collection Broadcast",
    "description": "June Collection Broadcast",
    "recording": {
      "id": "248",
      "type": "recording"
    },
    "destination": {
      "id": "7926",
      "type": "ivr",
      "name": "Welcome IVR"
    },
    "created_at": "2020-06-12 02:42:49",
    "updated_at": "2020-07-22 13:41:24"
  },
  .....
]Response Variables
The response returned is as following:
| Variable Name | Description | Data Type | 
|---|---|---|
| id | Unique ID of the Auto Attendant. | String | 
| name | Name of the Auto Attendant | String | 
| description | Description of Auto Attendant. | String | 
| recording.id | Unique ID of Recording. | String | 
| recording.type | Type of Recording. | String | 
| destination.id | Unique ID of Destination. | String | 
| destination.type | Type of destination. for example: hangup, ivr, etc. | String | 
| destination.name | Name of the destination. | String | 
| created_at | Time stamp of the Auto Attendant, when it was created. | String (timestamp: yyyy-mm-dd hh:mm:ss) | 
| updated_at | Time stamp of the Auto Attendant, when it was updated. | String (timestamp: yyyy-mm-dd hh:mm:ss) | 
