action osf_users_addons_list { label: "List all user addons" description: "\nA paginated list of authorized user addons\n\n#### Permissions\n\nUser addons are visible only to the user that authorized the addon.\n\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of up to 10 addons. Each resource in the array is a separate addon object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\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.\n\nAttempting to request the accounts for an addon that is not enabled will result in a **404 Not Found** response." provider: osf method: GET path: "/users/{user_id}/addons/" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }