Get User

Retrieve a single user by ID

GEThttps://api.jamdesk.com/api/v1/users/:id

Returns detailed information about a specific user.

Path Parameters

idstringrequired

The user ID.

curl -X GET "https://api.example.com/v1/users/user_123" \
  -H "Authorization: Bearer $TOKEN"
{
  "data": {
    "id": "user_123",
    "email": "jane@example.com",
    "displayName": "Jane Doe",
    "avatarUrl": "https://cdn.example.com/avatars/jane.png",
    "createdAt": "2024-01-15T10:30:00Z"
  }
}