POST api/Publish/GetAllJobAdsByCareers
Request Information
URI Parameters
None.
Body Parameters
JobSearch_CareersModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserProfileID | integer |
None. |
|
| PageNumber | integer |
None. |
|
| EntriesPerPage | integer |
None. |
|
| DepartmentID | integer |
None. |
|
| PositionID | integer |
None. |
|
| JobAdd_Active | boolean |
None. |
|
| CountryID | integer |
None. |
|
| ProvinceID | integer |
None. |
|
| CityID | integer |
None. |
|
| TownID | integer |
None. |
|
| CountyID | integer |
None. |
|
| WorkLocation | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserProfileID": 1,
"PageNumber": 1,
"EntriesPerPage": 2,
"DepartmentID": 1,
"PositionID": 1,
"JobAdd_Active": true,
"CountryID": 1,
"ProvinceID": 1,
"CityID": 1,
"TownID": 1,
"CountyID": 1,
"WorkLocation": "sample string 3"
}
application/xml, text/xml
Sample:
<JobSearch_CareersModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model"> <CityID>1</CityID> <CountryID>1</CountryID> <CountyID>1</CountyID> <DepartmentID>1</DepartmentID> <EntriesPerPage>2</EntriesPerPage> <JobAdd_Active>true</JobAdd_Active> <PageNumber>1</PageNumber> <PositionID>1</PositionID> <ProvinceID>1</ProvinceID> <TownID>1</TownID> <UserProfileID>1</UserProfileID> <WorkLocation>sample string 3</WorkLocation> </JobSearch_CareersModel>
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>