Read metadata for one raw file attachment. Use this when the user asks about a specific file; for AI context docs use getMeetingContext and for the actual bytes use manageMeetingContent download. Returns the metadata of a single attachment, keyed by the meeting `{id}` and the `{attachment_id}` from v1ListMeetingAttachments; requires the `meetings:read` scope. Metadata only: no storage location is ever exposed — fetch bytes with v1DownloadMeetingAttachment. An attachment addressed through a meeting it does not belong to, or one the caller may not see, returns 404.
getMeetingAttachmentRead metadata for one raw file attachment. Use this when the user asks about a specific file; for AI context docs use getMeetingContext and for the actual bytes use manageMeetingContent download.
Returns the metadata of a single attachment, keyed by the meeting {id} and
the {attachment_id} from v1ListMeetingAttachments; requires the
meetings:read scope. Metadata only: no storage location is ever exposed —
fetch bytes with v1DownloadMeetingAttachment. An attachment addressed through
a meeting it does not belong to, or one the caller may not see, returns 404.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Meeting ID | |
| attachment_id | Yes | Attachment ID |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Unique identifier for the attachment | |
| kind | No | Attachment kind: file (binary upload) or link (external URL) | |
| file_name | No | Original file name of the upload | |
| mime_type | No | MIME type as supplied by the uploading client; arbitrary types are accepted | |
| created_at | No | Timestamp when the attachment was created | |
| meeting_id | No | ID of the meeting the attachment belongs to | |
| size_bytes | No | Size of the stored file in bytes; zero for link attachments | |
| updated_at | No | Timestamp when the attachment was last updated | |
| access_level | No | Visibility: just_me (creator only), meeting (meeting participants), workspace (whole workspace) | |
| workspace_id | No | ID of the workspace that owns the attachment | |
| created_by_user_id | No | ID of the user who created the attachment | |
| external_content_url | No | URL of the linked resource; present only for link attachments |