action attio_delete_file { label: "Delete a file" description: "Delete a single file by ID. Deleting a folder will delete all of its descendants.\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-write`, `object_configuration:read`, `record_permission:read`." provider: attio method: DELETE path: "/v2/files/{file_id}" encoding: json scopes: ["file:read-write", "object_configuration:read", "record_permission:read"] input: { type: "object" properties: { file_id: { type: "string" format: "uuid" description: "A UUID which identifies the file to delete." } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }