Add a Resume

Upload a resume to an existing candidate.

Request

POST https://api.comeet.co/candidates/{uid}/resume

Request path parameters:

NameTypeOptionalDescription
uidstringRequiredUID of the candidate

Request body parameters:

NameTypeOptionalDescription
namestringRequiredFile name, for example: CV.docx
filestringRequiredThe 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
}