Skip to main content

List Users

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 list of the users available in your app.

Base URL

Send your POST method request with valid parameters, to the following base URL.

https://rest.telecmi.com/v3/user/list

Required Parameters

These are the required POST method parameters with description

Parameter NameTypeDescription
*appidnumberYour app ID
*secretstringYour app secret
pagenumberThe Number of page per 10 record. By default the page is 1.
limitnumberThe Number of record for request.
namestringFilter by name (optional)
Note
The * marked parameter is mandatory.

Sample JSON Request

Below is the following sample JSON POST method request

{
"appid": 1111112,
"secret": "xxxx-xxxx-xxxx-xxxx",
"page": 1,
"limit": 10
}

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",
"count": 4,
"agents": [
{
"agent_id": "1001_1111112",
"first_name": "Manish",
"last_name": "Kumar",
"extension": 1001,
"password": "password123",
"notify": true,
"phone": "967755XXXX",
"start_time": 1,
"end_time": 24
}
]
}

Properties

These are the list of properties and its description

PropertyTypeDescription
statusstringThe status of the request, success or error
countnumberThe total count of user list
agentsJSON arrayThe list of user details
agent_idstringThe user ID
first_namestringThe first name of the user
last_namestringThe last name of the user
extensionnumberThe four digit extension of the user
passwordstringThe password of the user
phonestringThe phone number of the user
user_idstringThe unique system ID of the user
notifybooleanThe missed call notification status
start_timenumberThe shift start time of the user
end_timenumberThe shift end time of the user

HTTP status codes

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

Status codeStatus TypeDescription
200SuccessRequest processed successfully
401ErrorAuthentication Failed
400ErrorValidation failed
500ErrorSorry, something goes wrong !