Automatic Callback

Manage Automatic Callback settings.

Retrieve automatic callback settings

get

Retrieve automatic callback settings.

Authorizations
Responses
200
OK
application/json
get
GET /api/acb HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "extension_number": "text",
  "language": "en-US",
  "retry_interval": 5,
  "retry_total_time": 30
}

Update automatic callback settings

post

Update automatic callback settings

Authorizations
Body
extension_numberall ofOptional

The extension number of automatic callback service.

string · min: 3 · max: 64Optional

The extension number.

Pattern: [0-9]{3,64}
languagestringOptional

BCP 47 Language Tags (The Internet Best Current Practices (BCP) for language tags). A language tag is composed of a sequence of one or more subtags such as language, region, variant and script subtags. When a language tag is comprised of more than one subtag, the subtag values are separated by the "-" character. You will most commonly find language tags written with 2 subtags - language and region. For example: en-US.

Example: en-US
retry_intervalinteger · int32Optional

Retry originator minutes. The amount of time to wait before re-trying a busy automatic callback originator.

Default: 5
retry_total_timeinteger · int32Optional

Monitor Minutes. The amount of time to camp-out on the busy line, waiting for it to become idle.

Default: 30
Responses
200
OK
post
POST /api/acb HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 87

{
  "extension_number": "text",
  "language": "en-US",
  "retry_interval": 5,
  "retry_total_time": 30
}

No content