Company logoTrust Center Documentation

Get user profile

Retrieve detailed information about a specific user including profile settings and preferences. Browse request parameters, authentication requirements,…

GET
/api/v1/users/{id}

Retrieve detailed information about a specific user including profile settings and preferences.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

User ID

Formatuuid

Response Body

application/json

curl -X GET "https://example.com/api/v1/users/user-123"
{  "user": {    "id": "user-123",    "first_name": "Jane",    "last_name": "Doe",    "email": "jane@example.com",    "title": "Compliance Manager",    "theme": "dark",    "language": "en"  }}

How is this guide?