get https://api-smartflo.tatateleservices.com/v1/auto_attendant/
This API allows you to fetch details of Auto Attendant.
Sample Request
curl --request GET \
--url https://api-smartflo.tatateleservices.com/v1/auto_attendant/3310 \
--header 'Authorization: ' \
--header 'accept: application/json'
š Important!
Before we begin, note that the * sign denotes the mandatory variables in each table.
Request Variables (Path Params)
The following parameter is required to fetch details of auto attendant:
Variable Name | Description | Data Type |
---|---|---|
id | Id of the Auto-Attendant. | String |
Sample Response
{
"id": "3310",
"name": "asfasf",
"description": "fasfaf",
"recording": {
"id": "8296",
"type": "recording"
},
"destination": {
"id": "1",
"type": "hangup",
"name": null
},
"created_at": "2020-10-16 20:35:32",
"updated_at": "2021-09-27 11:12:55"
}
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) |