Attachments
Manages file attachments that are associated with cases. This table enables users to upload supporting documents, images, or records during case creation for compliance, auditing, and issue resolution.
Table Specific Information
Select
The Workday driver requires filtering on Id in order to perform the query.
For example:
SELECT * FROM Attachments WHERE Id = 'f8e80f38f2af100009b00e67c49b12f2';
Workday Resource Information
Uploads 1 attachment per API call.You can only include attachment types that are configured on the tenant. You can use GET /helpCase/configuration to determine which attachment types are supported.
Secured by: Manage: Case Create on Behalf Of+TG, Self Service: Help Case Management+TG
Scope: Help
Contains attachment(s)
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | False |
The unique identifier (Id) for the attachment instance. This Id ensures that each attachment is distinctly tracked and managed within the system. |
| ContentType_Descriptor | String | False |
A human-readable summary of the content type associated with the attachment. This summary provides insight into the type of file, such as document, image, or PDF. |
| ContentType_Href | String | False |
A direct link to the content type instance associated with the attachment. This link provides programmatic access to retrieve details about the file type classification. |
| ContentType_Id | String | False |
The unique Id for the content type associated with the attachment. This Id ensures accurate classification and processing of file attachments within the system. |
| FileLength | Decimal | False |
The total file size of the attachment in bytes. This value helps track storage usage and enforce file size limits. |
| FileName | String | False |
The name of the file attached to the record. This value provides a recognizable label for the file within the system. |