---
title: "Retrieve authorized user"
method: GET
path: "/authorized_users/{id}"
tags: ["Authorized users"]
---

# Retrieve authorized user

`GET /authorized_users/{id}`

Retrieves the details of an existing authorized user.

Required permissions:
 - `company:authorized_user:read`
 - `member:email:read`

## Path parameters

- `id` string, required

## Response `200`

A successful response

- AuthorizedUser — A user who has been granted administrative access to manage a company's dashboard and settings.
  - `company` object, required — The company this authorized user has access to.
    - `id` string, required — The unique identifier for the company.
    - `title` string, required — The display name of the company shown to customers.
  - `id` string, required — The unique identifier for the authorized user.
  - `role` 'owner' | 'admin' | 'sales_manager' | 'moderator' | 'advertiser' | 'app_manager' | 'support' | 'manager' | 'custom', required — Possible roles an authorized user can have
  - `user` object, required — The user account linked to this authorized user record.
    - `email` string, nullable, required — The user's email address. Requires the member:email:read permission to access. Null if not authorized.
    - `id` string, required — The unique identifier for the user.
    - `name` string, nullable, required — The user's display name shown on their public profile.
    - `username` string, required — The user's unique username shown on their public profile.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/db0883548bc5/schema)
