User Info
Each API request in TeleCMI platform includes App id and secret. Get your App id and secret in TeleCMI dashboard. After getting the app id and secret, make a POST request to the below base URL to get the information of the user in your app.
Base URL
Send your POST method request with valid parameters, to the following base URL.
https://rest.telecmi.com/v3/user/get
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 |
| *agent_id | string | The User ID |
Note
All the above parameters are mandatory.
Sample JSON Request
Below is the following sample JSON POST method request
{
"appid": 1111112,
"secret": "xxxx-xxxx-xxxx-xxxx",
"agent_id": "1001_1111112"
}
Sample Response
If the provided information is valid, your web server will get a sample response from TeleCMI Platform as given below
{
"code": 200,
"status": "success",
"agent": {
"agent_id": "1001_1111112",
"first_name": "Abishek",
"last_name": "Kumar",
"extension": 1001,
"password": "password1234",
"phone": "967755XXXX",
"start_time": 1,
"end_time": 24,
"followme": true
}
}
Properties
These are the list of properties and its description
| Property | Type | Description |
|---|---|---|
| status | string | The status of the request, success or error |
| agent | JSON object | The user details |
| agent_id | string | The User ID |
| first_name | string | The first name of the user |
| last_name | string | The last name of the user |
| extension | number | The four digit extension of the user |
| password | string | The password of the user |
| phone | string | The phone number of the user |
| start_time | number | The shift start time of the user |
| end_time | number | The shift end time of the user |
| followme | boolean | Followme status of the user |
HTTP status codes
TeleCMI API platform represents the following status code to identity the errors.
| Status code | Status Type | Description |
|---|---|---|
| 200 | Success | Request processed successfully |
| 404 | Error | Authentication Failed or Sorry, something goes wrong ! |
| 400 | Error | Validation failed |
| 500 | Error | Sorry, something goes wrong ! |