id as the cv value whenanswer_file value of a file_upload / photo question.multipart/form-data.file (file, as body parameter, required): The file to upload. File size must be less than 5 MB.application/pdftext/plainapplication/vnd.openxmlformats-officedocument.wordprocessingml.documentapplication/mswordimage/pngimage/jpegimage/jpg201 Created : Returns the details of the uploaded document, including its ID, name, type, size, and storage path.400 Bad Request : If the file is larger than 5 MB or its content type is not in the list above.curl --location 'https://api.recruspace.com/api/v1/client/utilities/upload-file/' \
--header 'Authorization: Bearer <token>' \
--form 'file=@""'{
"success": "OK",
"content": {
"id": 0,
"path": "string",
"name": "string",
"type": "string",
"file_size": -2147483648,
"base": "string",
"presigned_url": "string",
"uploaded_at": "2019-08-24T14:15:22.123Z"
}
}