Get List Of Users: The GetListOfUsers method allows you to retrieve the list of users.
REQUEST ATTRIBUTES
tokenIn  | 
string  | 
This is the security token that is obtained by the previous API call. See API Security topic for more details  | 
|---|
RETURN ATTRIBUTES
GetListOfUsersResult  | 
int  | 
An integer result indicating success (= 0) or an error (<> 0)  | 
|---|---|---|
tokenOut  | 
string  | 
This is the new security token that should be used for the next function call after this one. See the API Security topic for more details  | 
usersList  | 
string  | 
This is the list of users  | 
REST
The following is a sample REST request and response. The placeholders shown need to be replaced with actual values.
POST /REST/api/portal/GetListOfUsers HTTP/1.1 Host: <server url> Content-Type: multipart/form-data 
 Content-Disposition: form-data; name="tokenIn" string  | 
HTTP/1.1 200 OK Content-Length: length Content-Type: application/json; charset=utf-8 { "GetListOfUsersResult":int, "tokenOut":string, "usersList":string }  | 
Return to: Account API Methods (REST), Integration