action appwrite_storage_get_file_view { label: "Get File for View" description: "Get a file content by its unique ID. This endpoint is similar to the download method but returns with no 'Content-Disposition: attachment' header." provider: appwrite method: GET path: "/storage/files/{fileId}/view" encoding: json input: { type: "object" properties: { fileId: { type: "string" } } required: ["fileId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }