GET Api/Applicant/Educations/{applicantId}
Returns all educations of a certain applicant.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicantId |
The ID of the applicant. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of educations.
Collection of ApplicantEducationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| Location | string |
None. |
|
| Specialization | string |
None. |
|
| Start | FlexDate |
None. |
|
| End | FlexDate |
None. |
|
| IsFinished | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Type": "sample string 2",
"Location": "sample string 3",
"Specialization": "sample string 4",
"Start": {
"Year": 1,
"Month": 1,
"Day": 1,
"IsRelativeDate": true,
"IsValid": false,
"IsEmpty": false
},
"End": {
"Year": 1,
"Month": 1,
"Day": 1,
"IsRelativeDate": true,
"IsValid": false,
"IsEmpty": false
},
"IsFinished": true
},
{
"Id": 1,
"Type": "sample string 2",
"Location": "sample string 3",
"Specialization": "sample string 4",
"Start": {
"Year": 1,
"Month": 1,
"Day": 1,
"IsRelativeDate": true,
"IsValid": false,
"IsEmpty": false
},
"End": {
"Year": 1,
"Month": 1,
"Day": 1,
"IsRelativeDate": true,
"IsValid": false,
"IsEmpty": false
},
"IsFinished": true
}
]
application/xml, text/xml
Sample:
<ArrayOfApplicantEducationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
<ApplicantEducationResponse>
<End xmlns:d3p1="http://schemas.datacontract.org/2004/07/eRecruiter.Api" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
<d3p1:Day>1</d3p1:Day>
<d3p1:IsRelativeDate>true</d3p1:IsRelativeDate>
<d3p1:Month>1</d3p1:Month>
<d3p1:Year>1</d3p1:Year>
</End>
<IsFinished xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">true</IsFinished>
<Location xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 3</Location>
<Specialization xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 4</Specialization>
<Start xmlns:d3p1="http://schemas.datacontract.org/2004/07/eRecruiter.Api" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
<d3p1:Day>1</d3p1:Day>
<d3p1:IsRelativeDate>true</d3p1:IsRelativeDate>
<d3p1:Month>1</d3p1:Month>
<d3p1:Year>1</d3p1:Year>
</Start>
<Type xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 2</Type>
<Id>1</Id>
</ApplicantEducationResponse>
<ApplicantEducationResponse>
<End xmlns:d3p1="http://schemas.datacontract.org/2004/07/eRecruiter.Api" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
<d3p1:Day>1</d3p1:Day>
<d3p1:IsRelativeDate>true</d3p1:IsRelativeDate>
<d3p1:Month>1</d3p1:Month>
<d3p1:Year>1</d3p1:Year>
</End>
<IsFinished xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">true</IsFinished>
<Location xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 3</Location>
<Specialization xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 4</Specialization>
<Start xmlns:d3p1="http://schemas.datacontract.org/2004/07/eRecruiter.Api" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">
<d3p1:Day>1</d3p1:Day>
<d3p1:IsRelativeDate>true</d3p1:IsRelativeDate>
<d3p1:Month>1</d3p1:Month>
<d3p1:Year>1</d3p1:Year>
</Start>
<Type xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 2</Type>
<Id>1</Id>
</ApplicantEducationResponse>
</ArrayOfApplicantEducationResponse>