Skip to main content
GET
/
api
/
v2
/
users
/
{user_id}
Get User
curl --request GET \
  --url https://api.example.com/api/v2/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email_address": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "account_role": "<string>",
  "is_deleted": true,
  "profile_picture": null,
  "profile_color": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

Response

200 - application/json

UserResponse(id: uuid.UUID, email_address: str, first_name: str, last_name: str, account_role: str, is_deleted: bool, profile_picture: Optional[str] = None, profile_color: Optional[str] = None)

id
string<uuid>
required
email_address
string
required
first_name
string
required
last_name
string
required
account_role
string
required
is_deleted
boolean
required
profile_picture
string | null
profile_color
string | null