GET user/getAll?PageNumber={PageNumber}&PageSize={PageSize}&Token={Token}
Retrieve data for each user in the system. Application privilege "View" for licensed agenda "Users" required. Data may also be restricted by record permission "View" of agenda "User". Paging supported
Request Information
Authorization
- Authorization by token required
Availability
- Method can be used
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
PageNumber |
Optional parameter may be omitted. All records are displayed when is omitted otherwise specific page is displayed |
integer |
Matching regular expression pattern: ([0-9]+) |
PageSize |
Optional parameter may be omitted. Define number of records in the page. |
integer |
Matching regular expression pattern: ([0-9]+) |
Token |
The action is authorized by this token. Token should generated by calling action "POST login". Expiration time of each token is 20 seconds |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Response Codes
Http Code | Error Number | Description |
---|---|---|
200 request succesfully done | 0 | Successfully done |
400 bad request | 1002 | Entry parameter missing or parameter bindigs failed |
401 unauthorized | 1000 | Token {0} not found |
401 unauthorized | 1001 | Token {0} already expired |
401 unauthorized | 1006 | Ip filter violated for ip client address [{0}] |
401 unauthorized | 1007 | Ip filter [{0}] parsing failed |
401 unauthorized | 1008 | Request rate policy violated for [{0}] |
403 server refuses fo fulfill the rquest | 1401 | Privilege View of agenda Users violated for [LoginName {0}] |
415 unsupported Media Type | The request entity has a media type which the server or resource does not support. Only application/json and application/xml are supported | |
500 internal error | Server exception description |
Resource Description
UserGetAllRespName | Description | Type | Additional information |
---|---|---|---|
Users | Collection of User |
None. |
|
Paging | PagingResp |
None. |
Response Formats
application/json
Sample:
{"Users":[{"LoginName":"John.Doo","VerificationNT":1,"ValidFrom":"2019-01-01T08:00:00","ValidTo":"2021-01-01T08:00:00","Lock":0,"UserName":"John Doo","TimeLastChange":"\/Date(1732287910634)\/","Roles":["Administrators","Users"]},{"LoginName":"James.Smith","VerificationNT":1,"ValidFrom":"2019-01-01T08:00:00","ValidTo":"2020-01-01T08:00:00","Lock":0,"UserName":"James Smith","TimeLastChange":"\/Date(1732287910634)\/","Roles":[]}],"Paging":{"CurrentPage":5,"PageSize":25,"TotalCount":128,"TotalPages":5}}
application/xml
Sample:
<Response> <Users> <User> <LoginName>John.Doo</LoginName> <VerificationNT>1</VerificationNT> <ValidFrom>2019-01-01T08:00:00</ValidFrom> <ValidTo>2021-01-01T08:00:00</ValidTo> <Lock>0</Lock> <TimeLastChange>2024-11-22T15:05:10.6344048Z</TimeLastChange> <Roles> <string>Administrators</string> <string>Users</string> </Roles> </User> <User> <LoginName>James.Smith</LoginName> <VerificationNT>1</VerificationNT> <ValidFrom>2019-01-01T08:00:00</ValidFrom> <ValidTo>2020-01-01T08:00:00</ValidTo> <Lock>0</Lock> <TimeLastChange>2024-11-22T15:05:10.6344048Z</TimeLastChange> <Roles /> </User> </Users> <Paging> <CurrentPage>5</CurrentPage> <PageSize>25</PageSize> <TotalCount>128</TotalCount> <TotalPages>5</TotalPages> </Paging> </Response>
text/json
Sample:
{ "Users": [ { "Roles": [ "sample string 1", "sample string 2" ] }, { "Roles": [ "sample string 1", "sample string 2" ] } ], "Paging": { "CurrentPage": 1, "PageSize": 2, "TotalCount": 3, "TotalPages": 4 } }
text/xml
Sample:
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Users> <User> <Roles> <string>sample string 1</string> <string>sample string 2</string> </Roles> </User> <User> <Roles> <string>sample string 1</string> <string>sample string 2</string> </Roles> </User> </Users> <Paging> <CurrentPage>1</CurrentPage> <PageSize>2</PageSize> <TotalCount>3</TotalCount> <TotalPages>4</TotalPages> </Paging> </Response>