Fetch Details of an Auto Attendant

This API allows you to fetch details of Auto Attendant.

Sample Request

curl --request GET \
     --url https://api.servetel.in/v1/auto_attendant/id \
     --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 NameDescriptionData Type
idId of the Auto-Attendant.String

Sample Response

{
  "id": "8922",
  "name": "Test",
  "description": "Test AA",
  "recording": {
    "id": "19549",
    "type": "recording"
  },
  "destination": {
    "id": "050109590001",
    "type": "agent",
    "name": "Shrish Gulati"
  },
  "created_at": "2020-07-22 13:44:04",
  "updated_at": null
}

Response Variables

The response returned is as following:

Variable NameDescriptionData Type
idUnique ID of the Auto Attendant.String
nameName of the Auto AttendantString
descriptionDescription of Auto Attendant.String
recording.idUnique ID of Recording.String
recording.typeType of Recording.String
destination.idUnique ID of Destination.String
destination.typeType of destination. for example: hangup, ivr, etc.String
destination.nameName of the destination.String
created_atTime stamp of the Auto Attendant, when it was created.String (timestamp: yyyy-mm-dd hh:mm:ss)
updated_atTime stamp of the Auto Attendant, when it was updated.String (timestamp: yyyy-mm-dd hh:mm:ss)
Language
Click Try It! to start a request and see the response here!