Parallel call numbers

Overview

Parallel numbers are assigned to a specific account SIP.
They begin to be called at the same time the call is routed to the account number itself.
These can be external numbers, group numbers of numbers in other domains and numbers of other users, and service numbers of scripts IVR.

No cascading parallel call is performed.
That is, if you call another extension whose account has its own parallel numbers assigned, they will not be called.

The numbers are also not redialed.
For example, if a group is called in parallel in which the account itself is also represented, it will be called once.

With the help of parallel called IVR services, for example, a scheme of automatic answering by voice mail service at the 10th second of the call can be realized.
To do this, you must pause in the script before picking up the handset.

Requests

HTTP verb Endpoint Description

GET

/rest/v1/user/sip/accounts/:AccountID/parallel

Getting the list of parallel call numbers

PUT

/rest/v1/user/sip/accounts/:AccountID/parallel

Replaces the list of parallel call numbers

For all requests:
Domain Type: working

Getting the list of parallel call numbers

Returns a list of parallel call numbers SIP account specified using the identifier and attached to the authorized user.

Request

Request example
GET /rest/v1/user/sip/accounts/c7e163c6-8b5e-cb6e-7bf4-441a912ff0b9/parallel HTTP/1.1
http

Response

Response example
HTTP/1.1 200 OK
Content-Type: application/json

[
  "101",
  "*9722",
  "891234567890"
]
http

Replaces the list of parallel call numbers

Performs a complete replacement of the list of parallel numbers SIP account specified using the identifier and attached to the authorized user.

Request

Request example
PUT /rest/v1/user/sip/accounts/c7e163c6-8b5e-cb6e-7bf4-441a912ff0b9/parallel HTTP/1.1
Content-Type: application/json

[
  "101",
  "*9722"
]
http

Response

Response example
HTTP/1.1 200 OK
Content-Type: application/json

[
  "101",
  "*9722"
]
http