EventAttachments
Displays all file attachments associated with calendar events. This view allows you to analyze or extract files linked to scheduled meetings or appointments.
Table Specific Information
Select
You can query EventAttachments by specifying the Event Id (Requried):
SELECT * FROM [EventAttachments] WHERE EventId = 'event id'
This query will get the Attachments of the specified Event as a list without including their content.
Columns
| Name | Type | Description |
| eventId | String | Unique identifier of the event to which the attachment is linked. This serves as a foreign key that ties the attachment record to a specific event in the Exchange calendar. |
| id [KEY] | String | Unique identifier of the attachment object. This ID is used to retrieve or manage the attachment independently. |
| contentType | String | Specifies the media type (MIME type) of the attachment content, such as text/plain, image/jpeg, or application/pdf, allowing clients to correctly interpret the file format. |
| isInline | Bool | Indicates whether the attachment is intended to be displayed inline within the body of the event, such as embedded images or HTML content. |
| lastModifiedDateTime | Datetime | Timestamp reflecting the last time the attachment metadata or content was modified. Useful for synchronization and change tracking. |
| name | String | Name of the attachment, typically representing the original filename, which helps identify the content of the attachment. |
| size | Int | Size of the attachment in bytes. This can be used to manage file transfer limits or optimize storage and bandwidth usage. |
| userId | String | Identifier of the user who added or owns the attachment. This can be used for audit trails or access control. |