POST api/Education/SearchEmployees
Request Information
URI Parameters
None.
Body Parameters
SearchEmployeesEducationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProfessionCode | string |
None. |
|
| UserProfileID | integer |
None. |
|
| PageNumber | integer |
None. |
|
| EntriesPerPage | integer |
None. |
|
| OperatingUnitID | integer |
None. |
|
| DepartmentID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProfessionCode": "sample string 1",
"UserProfileID": 1,
"PageNumber": 2,
"EntriesPerPage": 3,
"OperatingUnitID": 1,
"DepartmentID": 1
}
application/xml, text/xml
Sample:
<SearchEmployeesEducationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model"> <DepartmentID>1</DepartmentID> <EntriesPerPage>3</EntriesPerPage> <OperatingUnitID>1</OperatingUnitID> <PageNumber>2</PageNumber> <ProfessionCode>sample string 1</ProfessionCode> <UserProfileID>1</UserProfileID> </SearchEmployeesEducationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>