action osf_nodes_addons_list { label: "List all addons" description: "\nA paginated list of addons connected to the given node or project.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of at most 10 addon objects. Each resource in the array is a separate addon object and contains the full representation of the addon, meaning additional requests to a addon'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/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } } required: ["node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }