Create Candidate Attachment
Uploads an attachment for a given candidate.
Currently this functionality is available for Success Factor and Teamtailor
🚨 Note: File size cannot exceed 5 MB.
For SAP Success Factor Integration
If integrating with SAP_SUCCESS_FACTOR, the request body must only contain:
Key | Type | Required | Description |
---|---|---|---|
file_name | string | required | Name of the file including its extension |
file_content | string (base64) | required | Base64 encoded file content |
remote_user_id | UUID | required | UUID of remote user created by Bindbee |
For Teamtailor Integration
If integrating with Teamtailor, the request body must only contain:
Key | Type | Required | Description |
---|---|---|---|
file_name | string | required | Name of the file including its extension |
file_url | string | required | Publically accessible file url |
remote_user_id | UUID | required | UUID of remote user created by Bindbee |
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Path Parameters
Body
The AtsAttachmentWriteForCandidate object is used to represent a file attachment linked to a candidate's application within the ATS.
The name of the file attached.
"resume.pdf"
The URL where the file is stored and can be retrieved.
1 - 2083
"https://example.com/path/to/resume.pdf"
The type of attachment, such as 'resume', 'cover letter', etc.
"RESUME"
File in base64 format
"SGVsbG8sIFdvcmxkIQ=="
The MIME type of the file (e.g., 'application/pdf', 'image/png').
"application/pdf"
The candidate to whom the attachment belongs.
"018b4bfb-5ece-70b1-ad5e-862a9433aa65"
The id of user using the integration
"018b4bfb-5ece-70b1-ad5e-862a9433aa65"
Response
The response is of type any
.