POST api/JobSeeker/OpportunityDetail/RespondToJob

Request Information

URI Parameters

None.

Body Parameters

TakeActionInput
NameDescriptionTypeAdditional information
Id

integer

None.

OverrideJobSeekerActionId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "overrideJobSeekerActionId": 1
}

application/xml, text/xml

Sample:
<TakeActionInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <Id>1</Id>
  <OverrideJobSeekerActionId>1</OverrideJobSeekerActionId>
</TakeActionInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TakeActionOutput
NameDescriptionTypeAdditional information
Success

boolean

None.

FailMessage

string

None.

RedirectUrl

string

None.

JobSeekerDocumentId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "failMessage": "sample string 2",
  "redirectUrl": "sample string 3",
  "jobSeekerDocumentId": 1
}

application/xml, text/xml

Sample:
<TakeActionOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <FailMessage>sample string 2</FailMessage>
  <JobSeekerDocumentId>1</JobSeekerDocumentId>
  <RedirectUrl>sample string 3</RedirectUrl>
  <Success>true</Success>
</TakeActionOutput>