GET api/ApplicantScreening/GetApplicantsForPreScreening

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApplicantScreeningModel
NameDescriptionTypeAdditional information
ScreeningApplicants

Collection of ScreeningApplicantModel

None.

IsPaymentCompleted

boolean

None.

IsScreeningCompleted

boolean

None.

PreScreeningStatusId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "screeningApplicants": [
    {
      "applicationId": 1,
      "applicantId": 1,
      "applicantName": "sample string 2",
      "applicantType": "sample string 3",
      "age": 4,
      "monthlyIncome": 5.0
    },
    {
      "applicationId": 1,
      "applicantId": 1,
      "applicantName": "sample string 2",
      "applicantType": "sample string 3",
      "age": 4,
      "monthlyIncome": 5.0
    }
  ],
  "isPaymentCompleted": true,
  "isScreeningCompleted": true,
  "preScreeningStatusId": 1
}

application/xml, text/xml

Sample:
<ApplicantScreeningModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ScreeningApplicants>
    <ScreeningApplicantModel>
      <ApplicationId>1</ApplicationId>
      <ApplicantId>1</ApplicantId>
      <ApplicantName>sample string 2</ApplicantName>
      <ApplicantType>sample string 3</ApplicantType>
      <Age>4</Age>
      <MonthlyIncome>5</MonthlyIncome>
    </ScreeningApplicantModel>
    <ScreeningApplicantModel>
      <ApplicationId>1</ApplicationId>
      <ApplicantId>1</ApplicantId>
      <ApplicantName>sample string 2</ApplicantName>
      <ApplicantType>sample string 3</ApplicantType>
      <Age>4</Age>
      <MonthlyIncome>5</MonthlyIncome>
    </ScreeningApplicantModel>
  </ScreeningApplicants>
  <IsPaymentCompleted>true</IsPaymentCompleted>
  <IsScreeningCompleted>true</IsScreeningCompleted>
  <PreScreeningStatusId>1</PreScreeningStatusId>
</ApplicantScreeningModel>