Upload a resume to an existing candidate.
Request
POST https://api.comeet.co/candidates/{uid}/resume
Request path parameters:
Name | Type | Optional | Description |
---|---|---|---|
uid | string | Required | UID of the candidate |
Request body parameters:
Name | Type | Optional | Description |
---|---|---|---|
name | string | Required | File name, for example: CV.docx |
file | string | Required | The content of the file encoded as a Base64 string |
The following file types are allowed for resumes: .pdf, .doc, .docx.
Note: The list of allowed file types can be customized for Recruit accounts on the Enterprise plan.
{
"name": "CV.docx",
"file": "BASE64"
}
Response
[
{
"url": "https://app.comeet.co/api/v1/download/...",
"name": "CV.docx"
}
]
{
"status":409,
"error":"candidate_post_conflict",
"message":"Candidate with provided partner_candidate_id already exists in position with status in progress",
"candidate_uid":5555
}