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

Authorizations

apiKey
string
header
required

Body

application/json

Request to add a new Clerk chat user

Response

201
application/json

The created Clerk chat user

Response containing Clerk chat user information