GET api/JobSeeker/Settings/GetRespondedToEmployersList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

JobSeekerGotHiredRequestOutput
NameDescriptionTypeAdditional information
Success

boolean

None.

FailMessage

string

None.

EmployerList

Collection of RepliedEmployerValue

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "failMessage": "sample string 2",
  "employerList": [
    {
      "id": 1,
      "name": "sample string 2"
    },
    {
      "id": 1,
      "name": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<JobSeekerGotHiredRequestOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.JobSeeker">
  <EmployerList>
    <RepliedEmployerValue>
      <ID>1</ID>
      <Name>sample string 2</Name>
    </RepliedEmployerValue>
    <RepliedEmployerValue>
      <ID>1</ID>
      <Name>sample string 2</Name>
    </RepliedEmployerValue>
  </EmployerList>
  <FailMessage>sample string 2</FailMessage>
  <Success>true</Success>
</JobSeekerGotHiredRequestOutput>