Skip to main content
GET
/
auth
/
me
Get Current User Info
curl --request GET \
  --url https://api.example.com/auth/me
{
  "user_id": "<string>",
  "email": "<string>",
  "organization_id": "<string>",
  "organization_name": "<string>"
}

Response

200 - application/json

Successful Response

User information response model.

Attributes: user_id: Unique user identifier. email: User's primary email address. organization_id: Organization identifier. organization_name: Name of the user's organization.

user_id
string
required
email
string | null
required
organization_id
string
required
organization_name
string | null
required