add_recruiting_attachment
Attach files to recruiting entries like vacancies, candidates, applicants, or opinions. Provide file source via path, URL, or base64 data, plus filename and MIME type.
Instructions
Attach a file to a Recruiting vacancy, candidate, applicant, or opinion target. Provide exactly one of filePath, fileUrl, or data, plus filename and contentType.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | Recruiting target locator. Supported kinds depend on the tool: comments use vacancy/candidate/applicant/review/opinion; attachments use vacancy/candidate/applicant/opinion; activity uses vacancy/candidate/applicant/review; related issues use vacancy/candidate/applicant. | |
| filename | Yes | Name of the file to attach to the Recruiting object. | |
| contentType | Yes | MIME type of the file, such as image/png or application/pdf. | |
| filePath | No | Local file path to upload. Mutually exclusive with fileUrl and data. | |
| fileUrl | No | Remote URL to fetch and upload. Mutually exclusive with filePath and data. | |
| data | No | Base64-encoded file data. Mutually exclusive with filePath and fileUrl. | |
| description | No | Optional attachment description. Use null on update to clear it. | |
| pinned | No | Whether the attachment should be pinned. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes | The successful tool result. The same value is also serialized as JSON in the text content for clients that do not read structuredContent. | |
| warnings | No | Optional agent-visible warnings about degraded result fidelity. Omitted when the server returned the documented happy-path payload. |