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