This module has been designed to get user list for organization. The Service URL of the module is given by the following link-
https://www.enterice.com/ICEAPI/api/ChatAdmin/GetUserList
•Request Type-
Post
•Allowed for–
Admin
•Json Formats-
1. Code snippet for Web Service Use–
GetUserList
{
“Token”:”sdfdsavcxdgdfFD”,
” OrganizationID “: 59
}
2. Description for Request Parameters–
S.No | Name | Type | Description |
1 | Token | String | Authentication Token |
2 | OrganizationID | Int | Id of organization |
3. Response Example-
Success:
{ “Message”: ” Success”,
“UserList”:
[{“UserId”:321,
“IsEnable”:1,
“ForeName”:”admin”,
“SurName”:”admin”,
“RoleId”:1,
“ChatLimit”:5,
“CurrentState”:0
},
{
“UserId”:352,
“IsEnable”:1,
“UserName”:”Tiffany”,
“ForeName”:”Tiffany”,
“SurName”:”Pardue”,
“RoleId”:2,
“ChatLimit”:3,
“CurrentState”:0
}
]
}
Fail: { “message”: ” The request is invalid.” }