POST api/Publish/getCandidatesList

Request Information

URI Parameters

None.

Body Parameters

CandidateSearchModel
NameDescriptionTypeAdditional information
EntriesPerPage

integer

None.

PageNumber

integer

None.

JobAD_BufferID

integer

None.

Job_Ad_PublishHistoryID

integer

None.

JobAD_AppliedID

integer

None.

Status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "EntriesPerPage": 1,
  "PageNumber": 2,
  "JobAD_BufferID": 1,
  "Job_Ad_PublishHistoryID": 1,
  "JobAD_AppliedID": 1,
  "Status": "sample string 3"
}

application/xml, text/xml

Sample:
<CandidateSearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <EntriesPerPage>1</EntriesPerPage>
  <JobAD_AppliedID>1</JobAD_AppliedID>
  <JobAD_BufferID>1</JobAD_BufferID>
  <Job_Ad_PublishHistoryID>1</Job_Ad_PublishHistoryID>
  <PageNumber>2</PageNumber>
  <Status>sample string 3</Status>
</CandidateSearchModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional 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>