1. Teleboard | Support Center
  2. Solution home
  3. API Documentation
  4. REST API - POST Requests
Open navigation

POST/call/redirect

Function


The POST/call/redirect method redirects a call to another PBX or external number. For this to work, the redirected call must be placed using the POST/send/call method, in order to identify the call with a unique ID.


Parameters


There are no parameters in the header. All parameters go in the body in JSON Raw format.


ParameterTypeOperation
cnumberstringThe number where the call is to be redirected to. This is usually another user's internal PBX line, but can also be any external number.
uniqueidstringA unique ID number for the call. This need to be obtained from the uniqueid field in the response received from the post/send/call method, once the call is placed from that method. 

Example


To redirect a call to extension 1214840  use this syntax:


HTTPS method: POST


Header


webserv.telebroad.com/api/teleconsole/rest/call/redirect


Body


{"cnumber":"1214840", "uniqueid":"1519784628.70134037"}


Response:


If the call was redirected successfully:


{

    "error": null,

    "result": "1"

}


If there was a problem redirecting the call (usually due to wrong uniqueid or if the call has already ended):


{

    "error":{

        "code": 444,

        "message": "The call does not exist."

    }

}

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article