action osf_users_addon_accounts_read { label: "Retrieve an addon account" description: "Retrieves the details of an addon account\n\n#### Permissions\n\nAddon accounts are visible only to the user that authorized the account.\n\n#### Returns\nReturns a JSON object with a `data` key containing the representation of the requested addon account, if the request was successful.\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." provider: osf method: GET path: "/users/{user_id}/addons/{provider}/accounts/{account_id}/" encoding: json input: { type: "object" properties: { account_id: { type: "string" } provider: { type: "string" } user_id: { type: "string" } } required: ["account_id", "provider", "user_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }