quire.uploadCommentAttachment
Upload file attachments to comments by providing the comment ID, filename, and content as a string. Supports text or base64-encoded binary content.
Instructions
Upload a file attachment to a comment. The content should be provided as a string (e.g., text content or base64-encoded binary).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| commentOid | Yes | The comment OID (unique identifier) to attach the file to | |
| filename | Yes | The filename for the attachment (e.g., 'document.txt') | |
| content | Yes | The file content as a string | |
| mimeType | No | The MIME type of the file (e.g., 'text/plain', 'application/pdf'). Defaults to 'application/octet-stream' |