upload_resume
Upload a resume from a local file or base64 content, with an option to parse it for automatic extraction of candidate fields and photo.
Instructions
Upload a resume file (WRITE operation: multipart). Source: file_path (local path) OR content_base64+file_name. parse=true parses the CV (returns text/fields/photo). Put the id from the response into create_applicant → externals[].files / photo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parse | No | Parse the resume (X-File-Parse). Returns text/fields/photo to populate the applicant card | |
| file_name | No | File name for content_base64 (e.g. resume.pdf). For file_path it is taken from the path | |
| file_path | No | Local path to the file (the server will read the bytes). Alternatively use content_base64 | |
| account_id | Yes | HuntFlow account ID | |
| content_type | No | MIME type (e.g. application/pdf). Defaults to application/octet-stream | |
| content_base64 | No | File contents in base64 (alternative to file_path). Requires file_name |