User Access API
Each API request in TeleCMI platform includes App id and secret. Get your App id and secret in CHUB dashboard. After getting the app id and secret, make a POST request to the below base URL to generate the unique admin secret. Using unique admin secret, get the live call activities of the users and barge to the live calls.
Base URL
Send your POST method request with valid parameters, to the following base URL.
https://rest.telecmi.com/v2/token
Required Parameters
These are the required POST method parameters with description
Parameter Name | Type | Description |
---|---|---|
appid | number | Your app ID |
secret | string | Your app secret |
Note
Sample JSON Request
Below is the following sample JSON POST method request
{
"appid": 1111112,
"secret": "xxxx-xxxx-xxxx-xxxx"
}
Sample Response
If the provided information is valid, your web server will get a sample response from TeleCMI Platform as given below
{
"secret": "xxxx-xxxx-xxxx-xxxx",
"expiresIn": "30d",
"code": 200
}
Properties
These are the list of properties and its description
Property | Type | Description |
---|---|---|
secret | string | The unique admin secret. |
expiresIn | string | The unique admin secret expiry details. By default 30 Days. |
HTTP status codes
TeleCMI API platform represents the following status code to identity the errors.
Status code | Status type | Description |
---|---|---|
200 | OK | We received the request |
404 | Error | Invalid app id or secret, authentication failed |
400 | Error | Parameter missing |