GET employeePos/getAll?PageNumber={PageNumber}&PageSize={PageSize}&Token={Token}
Retrieve all employee position data from the system. Application privilege "View" for licensed agenda "Job position" required. Data may also be restricted by record privilege "View" of agenda "Job position".
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 | success |
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 request | 1201 | Privilege View of agenda Job position violated for [{0}] |
404 required resource does not exist on the server | 1200 | Employee positions not found |
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
EmployeePosGetAllRespName | Description | Type | Additional information |
---|---|---|---|
Position | Collection of EmployeePos |
None. |
|
Paging | PagingResp |
None. |
Response Formats
application/json
Sample:
{"Position":[{"Position":"Accountant","Description":"Short description of the employee position Accountant","TimeLastChange":"\/Date(1732183509897)\/"},{"Position":"CEO","Description":"Short description of the employee position CEO","TimeLastChange":"\/Date(1732183509897)\/"},{"Position":"Service engineer","Description":"Short description of the employee position Service engineer","TimeLastChange":"\/Date(1732183509897)\/"}],"Paging":{"CurrentPage":5,"PageSize":25,"TotalCount":128,"TotalPages":5}}
application/xml
Sample:
<Response> <Positions> <EmployeePos> <Description>Short description of the employee position Accountant</Description> <TimeLastChange>2024-11-21T10:05:09.8974315Z</TimeLastChange> </EmployeePos> <EmployeePos> <Description>Short description of the employee position CEO</Description> <TimeLastChange>2024-11-21T10:05:09.8974315Z</TimeLastChange> </EmployeePos> <EmployeePos> <Description>Short description of the employee position Service engineer</Description> <TimeLastChange>2024-11-21T10:05:09.8974315Z</TimeLastChange> </EmployeePos> </Positions> <Paging> <CurrentPage>5</CurrentPage> <PageSize>25</PageSize> <TotalCount>128</TotalCount> <TotalPages>5</TotalPages> </Paging> </Response>
text/json
Sample:
{ "Position": [ {}, {} ], "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"> <Positions> <EmployeePos /> <EmployeePos /> </Positions> <Paging> <CurrentPage>1</CurrentPage> <PageSize>2</PageSize> <TotalCount>3</TotalCount> <TotalPages>4</TotalPages> </Paging> </Response>