Skip to main content
GET
/
public
/
admin
/
users
/
{id}
Gets a single Clerk Chat User
curl --request GET \
  --url https://web-api.clerk.chat/public/admin/users/{id} \
  --header 'apiKey: <api-key>'
{
  "id": "<string>",
  "email": "<string>",
  "role": "<string>",
  "firstName": "<string>",
  "lastName": "<string>"
}

Authorizations

apiKey
string
header
required

Path Parameters

id
string

ID of user

Response

The created Clerk chat user

Response containing Clerk chat user information

id
string
required

The ID of the created user

email
string
required

The email of the created user

role
string
required

The role of the created user

firstName
string

The first name of the created user

lastName
string

The first name of the created user