action osf_users_addon_accounts_list { label: "List all addon accounts" description: "\nA paginated list of addon accounts authorized by this user.\n\n#### Permissions\n\nAddon accounts are visible only to the user that authorized the account.\n\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of at most 10 addon account objects. Each resource in the array is a separate addon account object and contains the full representation of the addon account.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination)." provider: osf method: GET path: "/users/{user_id}/addons/{provider}/accounts/" encoding: json input: { type: "object" properties: { provider: { type: "string" } user_id: { type: "string" } } required: ["provider", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }