Skip to content

File

A file attachment.

PropertyTypeRequiredDescription
downloadUrlurlYesThe file’s download URL.
namestringYesThe file’s name.
descriptionstringNoThe file’s description.
sizeInBytesnumericNoThe file’s size in bytes.
mimeTypestringNoThe file’s MIME type.
createdAtutcDateTimeYesThe file’s creation date.
lastModifiedAtutcDateTimeYesThe file’s last modified date.

A JSON example of this model.

{
"downloadUrl": "https://example.com",
"name": "Sample string value",
"createdAt": "2025-10-09T23:15:59.054Z",
"lastModifiedAt": "2025-10-09T23:15:59.054Z",
"description": "Sample string value",
"sizeInBytes": 100.5,
"mimeType": "Sample string value"
}