Convert supports uploading 3 file types: Cover Letter, CV, and Attachment. These files can have a maximum size of 5 MB and can be in .pdf and .docx formats.
β
Files are saved in a relationship with the candidate.
It is possible to upload a file as binary data or as a URL. If the file is being added by URL, file_name is mandatory. URLs on our side are generated as JWT-based short-lived links which respond with the decrypted file. The link is valid only for 20 minutes.
Example request to the RecruiterFlow API:
β
curl -X POST "https://recruiterflow.com/api/external/candidate/file/add" \
-H "accept: application/json" \
-H "RF-Api-Key: API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "file_name=FILE_NAME" \
-F "id=ID" \
-F "url=URL" \
