Skip to main content

Attachment

A file attachment associated with an entry cell (e.g., receipt, document).

uniqueidstringrequired

Encoded unique identifier for the attachment. Used to retrieve or delete the attachment.

This can be provided to the getAttachmentByEncodedId legacy API method to retrieve the file.

Example: dGltZV9hdHRhY2htZW50czoxMjM0NQ==
creatorstringrequired

User ID of the person who uploaded the attachment

Example: alice
create_timestampnumber<double>required

Unix timestamp when the attachment was uploaded

Example: 1762196180
notestring

Optional description or note about the attachment

Example: Receipt for client lunch meeting
filenamestringrequired

Original filename of the uploaded file

Example: receipt_2025-11-03.pdf
mimetypestring

MIME type of the file

Example: application/pdf
sizeinteger

File size in bytes

Example: 524288
Attachment
{
"uniqueid": "dGltZV9hdHRhY2htZW50czoxMjM0NQ==",
"creator": "alice",
"create_timestamp": 1762196180,
"note": "Receipt for client lunch meeting",
"filename": "receipt_2025-11-03.pdf",
"mimetype": "application/pdf",
"size": 524288
}