action attio_get_file { label: "Get a file" description: "Get a single file entry by ID.\n\nThis endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.\n\nRequired scopes: `file:read`, `object_configuration:read`, `record_permission:read`." provider: attio method: GET path: "/v2/files/{file_id}" encoding: json scopes: ["file:read", "object_configuration:read", "record_permission:read"] input: { type: "object" properties: { file_id: { type: "string" format: "uuid" description: "A UUID which identifies the file entry." } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "Success" required: ["data"] properties: { data: { type: "object" } } } }