Clarify API
Users

Get a user

Returns a single workspace user as a JSON:API resource, including their roles and the time they were last active.

GET
/workspaces/{workspace}/users/{userId}
Authorization<token>

API key authentication. Send your key in the Authorization header as: api-key <your-api-key>.

In: header

Path Parameters

workspace*string

The workspace slug — the {slug} segment of your Clarify workspace URL.

userId*string

The unique ID of the user.

Response Body

application/json

curl -X GET "https://example.com/workspaces/string/users/string"
{
  "data": {
    "type": "user",
    "id": "7d4e2f9a-1b3c-4d5e-8f6a-9c0b2d4e6f81",
    "attributes": {
      "_id": "7d4e2f9a-1b3c-4d5e-8f6a-9c0b2d4e6f81",
      "name": {
        "first_name": "Alex",
        "last_name": "Rivera"
      },
      "roles": {
        "items": [
          "member"
        ]
      },
      "email": "alex@acme.com",
      "profile_picture": "https://storage.clarify.ai/avatars/acme/alex-rivera.png",
      "_created_at": "2026-01-15T09:30:00.000Z",
      "_updated_at": "2026-02-01T17:45:00.000Z"
    }
  }
}