action osf_nodes_addons_folders_list { label: "List all addon folders" description: "\nA paginated list of folders retrieved from the associated third-party (provider) service.\n#### Permissions\nFolders are visible only to the user that authorized the addon.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of addon folder objects. Each resource in the array is a separate addon folder object and contains the full representation of the addon folder, meaning additional requests to a addon folder's detail view are not necessary.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/nodes/{node_id}/addons/{provider}/folders/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } provider: { type: "string" } } required: ["node_id", "provider"] additionalProperties: false } output: { type: "object" additionalProperties: true } }