GET
/
platform
/
api
/
v1
/
users
/
{id}
curl --request GET \
  --url https://app.chatwoot.com/platform/api/v1/users/{id} \
  --header 'api_access_token: <api-key>'
{
  "id": 123,
  "uid": "<string>",
  "name": "<string>",
  "available_name": "<string>",
  "display_name": "<string>",
  "email": "<string>",
  "account_id": 123,
  "role": "agent",
  "confirmed": true,
  "custom_attributes": {},
  "accounts": [
    {
      "id": 123,
      "name": "<string>",
      "role": "administrator"
    }
  ]
}

Authorizations

api_access_token
string
header
required

This token can be obtained by the system admin after creating a platformApp. This token should be used to provision agent bots, accounts, users and their roles.

Path Parameters

id
integer
required

The numeric ID of the user on the platform

Response

200
application/json
Success

The response is of type object.