Attachments
Upload an attachment to any supported entity
Upload a base64-encoded file and attach it to a task, vendor, risk, comment, or other supported entity type. The file is uploaded to S3 and a database record is created.
post/v1/attachments
Request body
Example request
{
"fileName": "document.pdf",
"fileType": "application/pdf",
"fileData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
"s3Key": "org_abc123/uploads/attachment/1700000000000-rbac-matrix.xlsx",
"description": "Meeting notes from Q4 planning session",
"userId": "usr_abc123def456",
"entityId": "tsk_abc123def456"
}Response
Attachment uploaded successfully
Example response
{
"id": "att_abc123def456",
"name": "document.pdf",
"type": "application/pdf",
"size": 1024000,
"downloadUrl": "https://bucket.s3.amazonaws.com/path/to/file.pdf?signature=...",
"createdAt": "2024-01-15T10:30:00Z"
}