GET api/ApplicantScreening/GetApplicants
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ApplicantScreeningModelName | Description | Type | Additional information |
---|---|---|---|
ScreeningApplicants | Collection of ScreeningApplicantModel |
None. |
|
IsPaymentCompleted | boolean |
None. |
|
IsScreeningCompleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "screeningApplicants": [ { "applicantId": 1, "applicantName": "sample string 2", "applicantType": "sample string 3", "age": 4, "monthlyIncome": 5.0 }, { "applicantId": 1, "applicantName": "sample string 2", "applicantType": "sample string 3", "age": 4, "monthlyIncome": 5.0 } ], "isPaymentCompleted": true, "isScreeningCompleted": true }
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> <ApplicantId>1</ApplicantId> <ApplicantName>sample string 2</ApplicantName> <ApplicantType>sample string 3</ApplicantType> <Age>4</Age> <MonthlyIncome>5</MonthlyIncome> </ScreeningApplicantModel> <ScreeningApplicantModel> <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> </ApplicantScreeningModel>