action osf_registrations_files_read { label: "Retrieve a file" description: "Retrieves the details of a registration file for the given storage provider.\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested registration file object, if the request is successful.\n\nIf the request is unsuccessful, an `errors` key containing information about the failure will be returned. Refer to the [list of error codes](#tag/Errors-and-Error-Codes) to understand why this request may have failed." provider: osf method: GET path: "/registrations/{registration_id}/files/{provider}/{path}/" encoding: json input: { type: "object" properties: { path: { type: "string" } provider: { type: "string" } registration_id: { type: "string" } } required: ["path", "provider", "registration_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }