action osf_registrations_files_list { label: "List all files" description: "List of all the registration's files/folders for a given storage provider.\n\n#### Returns\n\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of files. Each resource in the array is a separate file object and contains the full representation of the file.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n\n#### Filtering\n\nYou can optionally request that the response only include files that match your filters by utilizing the `filter` query parameter, e.g. https://api.osf.io/v2/registrations/wucr8/files/osfstorage/?filter[kind]=file\n\nFiles may be filtered by `id`, `name`, `node`, `kind`, `path`, `provider`, `size`, and `last_touched`." provider: osf method: GET path: "/registrations/{registration_id}/files/{provider}/" encoding: json input: { type: "object" properties: { provider: { type: "string" } registration_id: { type: "string" } } required: ["provider", "registration_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }