v53

latestOpenAPI 3.1.1raw.githubusercontent.com2026-07-264065213.4 KB
Users

Retrieve a user

Retrieves a User object.

get/users/{id}

Path parameters

idstring required

The ID of the user to retrieve.

Example:usr_01j9dwavghe1ttppewekjjkfrx

Response

User

first_namestring required

The user's first name.

idstring

Unique identifier for the object.

last_namestring

The user's last name.

metadataMetadata

Set of key-value pairs that will be stored with the object.

photo_urlstring uri

URL of a photo to be used as the user's avatar.

Example response

{
  "first_name": "Brian",
  "id": "usr_01j9dwavghe1ttppewekjjkfrx",
  "last_name": "O'Conner",
  "metadata": {
    "email": "boconner@toretti.family",
    "user_id": "1234"
  },
  "photo_url": "https://toretti.family/people/brian.jpg"
}