GET Api/Applicant/Cv/{applicantId}?includeContent={includeContent}
Returns the CV of an applicant service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| applicantId |
The ID of the applicant. |
integer |
Required |
| includeContent |
A value whether or not to include the file contents of the CV. |
boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
The CV of the applicant (if it exists).
ApplicantCvResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FileExtension | string |
None. |
|
| Content | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"FileExtension": "sample string 1",
"Content": "QEA="
}
application/xml, text/xml
Sample:
<ApplicantCvResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses"> <Content xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">QEA=</Content> <FileExtension xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Parameters">sample string 1</FileExtension> </ApplicantCvResponse>