GET
/
v4
/
users
/
{user_uid}
curl --request GET \
  --url https://api.captaindata.com/v4/users/{user_uid} \
  --header 'X-API-Key: <api-key>'
{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "created_at": "2023-10-01T12:00:00Z",
  "workspace_uid": "5678e456-e89b-12d3-a456-426614174001",
  "first_name": "John",
  "last_name": "Doe",
  "full_name": "John Doe",
  "email": "[email protected]",
  "timezone": "Europe/Paris",
  "integrations": [
    "linkedin"
  ]
}

Authorizations

X-API-Key
string
header
required

API key required for authentication. Add your API key in the X-API-Key header.

Path Parameters

user_uid
string
required

Response

200
application/json
Successfully retrieved the requested user.
timezone
string
required
uid
string
created_at
string
default:2025-10-01T00:00:00Z
workspace_uid
string | null
first_name
string | null
Maximum length: 255
last_name
string | null
Maximum length: 255
full_name
string | null
email
string | null
integrations
string[]