Requests Attachments
The Attachment object inherits from the abstract File base object.
Field
Type
Description
inlineAttachmentContent
string
Inline attachment content. For example, in the case of type LicenseKey
, this field is populated with a license key string.
Example: DFE25-GQ943-GH992-KL235-PY037
id
string
Primary attachment identifier using the 'ATT' prefix.
Example: ATT-1234-1234-1234
classification
string
File or license key.
Example: File
status
string
Status of the attachment. Possible values include Published
or Deleted
.
Example
{
"id": "ATT-1234-1234-1234",
"name": "Some order attachment",
"classification": "Text",
"contentType": "application/x-iso9660-image",
"size": 123,
"description": "Some order attachment description",
"filename": "SomeOrderAttachment.txt",
"inlineAttachmentContent": null,
"audit": {
"created": {
"at": "2023-01-01T22:00:00Z",
"by": { ... }
}
}
}
Last updated
Was this helpful?