Skip to content

Upload CV

The endpoint will allow you to upload CV. This endpoint parse the file and will return the name, address, email and phone number of thc candidate

Resource Path

PropertyValue
urlfiles

Headers

FieldDescription
filenameName of the file

Form Data

FieldDescription
filebinary

Response

FieldDescription
idString : Unique ID of the file
nameString : Name parsed from the cv, if possible.
emailString : Email parsed from the cv, if possible.
phoneNumberString : Phone number parsed from the cv, if possible
addressString : Address parsed from the cv is possible.
textString : The content of the file
Fenêtre de terminal
curl -X POST \
'https://public-api.nextal.com/files?napikey=demo&ntenant=demo' \
-H 'accept: application/json, text/plain, */*' \
-H 'cache-control: no-cache' \
-H 'content-type: multipart/form-data; boundary=----WebKitFormBoundaryGZ8GcXuy3A33pJRC' \
-H 'filename: CV Mickael Dubois.pdf' \
-d '------WebKitFormBoundaryGZ8GcXuy3A33pJRC
Content-Disposition: form-data; name="file"; filename="CV Mickael Dubois.pdf"
Content-Type: application/pdf
------WebKitFormBoundaryGZ8GcXuy3A33pJRC--'