Skip to main content

Make a Local Call

The outbound make a local call API is used to connect the call between two phone numbers within India. Using your app id and app secret, you can make an outbound call API request for local calls.

Base URL

Send your POST method request with valid parameters to the following local base URL:

https://rest.telecmi.com/v2/ind_pcmo_make_call

Required Parameters

These are the required POST method parameters with description for local calls:

Parameter NameTypeDescription
*appidnumberYour app id
*secretstringYour app secret
*fromnumberYour caller id for this call
*tonumberThe number the call was made to
extra_paramsstringYour custom parameters
*pcmoarray objectThe PCMO should return the forward call array object
Note
The * marked property is mandatory.

JSON Request

Below is the following sample JSON POST method request

{
"appid": 2222226,
"secret": "xxxx-xxxx-xxxx-xxxx",
"from": 919800000000,
"to": 919700000000,
"extra_params": { "order_id": "ORD12345" },
"pcmo": [
{
"action": "bridge",
"duration": 180,
"timeout": 15,
"from": 919800000000,
"loop": 3,
"connect": [
{
"type": "pstn",
"number": 919600000000
}
]
}
]
}

Response

If the provided information is valid, your web server will get a sample response from TeleCMI Platform as given below

{
"data": {
"status": "progress",
"request_id": "FrTckxcdYpJQFwSwki7ee2qY90MOYhgRyFzqgSlK5uT"
},
"status": "progress",
"request_id": "FrTckxcdYpJQFwSwki7ee2qY90MOYhgRyFzqgSlK5uT",
"code": 200
}

Properties

These are the list of properties and its description

PropertyTypeDescription
statusstringThe Status of the call
request_idstringThe Unique ID for this call

HTTP status codes

TeleCMI API platform represents the following status code to identity the errors.

Status codeStatus codeDescription
200OKWe received the request
420ErrorInvalid app id or secret, failed to authenticate token
422ErrorMissing required property
502ErrorThe property required is missing