This module helps to get user information through organization ID. The Service URL of the module is given by the following link-
https://www.enterice.com/external/icedataapi/api/chat/get_users
- Json Formats-
- Code snippet for Web Service API-
GET_USERS
{
“Token”: “34gdf6754y3444”,
“OrgID”: 11
}
2. Description for Request Parameters-
Request Parameters |
Notes |
||
Token | string | Authentication Token | |
OrgID | integer | Organization ID |
3. Response Example-
Success:
{
“UserData”: [
{
“UserID”: 12
“UserName”: “john@ice.com”,
“ForeName”: “John”,
“SurName”: “Smith”,
“ChatLimit”: 3
“EmailLimit”: 5
},
{
“UserID”: 13
“UserName”: “Andrew@ice.com”,
“ForeName”: “Andrew”,
“SurName”: “Smith”,
“ChatLimit”: 4
“EmailLimit”: 5
}
]
}
Fail:
{ “Status”: “ false”,
“Message”:”as above.”,
“Error”: “as above”
}