FruxonDocs
ConnectorsChat Users

Retrieves a specific chat user.

Looks up an end-user (someone who talks to agents via a connector like Slack/Discord/web chat) by their composite `provider:identifier` key. Distinct from tenant `Users` — chat users are external identities scoped to the connector that produced them, not workspace members. Returns 404 if no chat user with that key has been seen in this workspace. Use `GET /chatUsers` to discover keys.

GET
/v1/tenants/{tenant}/chatUsers/{chatUser}
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

chatUser*string

The chat user key in format provider:identifier (e.g., telegram:123456).

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/chatUsers/string"
{
  "key": {
    "identifier": "string",
    "provider": "string"
  },
  "firstName": "string",
  "lastName": "string",
  "avatarUrl": "string",
  "signatureUrl": "string"
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}