GET
/
public
/
admin
/
users
/
{id}
curl --request GET \
  --url https://web-api.clerk.chat/public/admin/users/{id} \
  --header 'apiKey: <api-key>'
{
  "id": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "role": "<string>"
}

Authorizations

apiKey
string
header
required

Path Parameters

id
string
required

ID of user

Response

201
application/json
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