Chatwoot · Schema

Account

Chatwoot Account schema

Customer SupportMessagingLive ChatOmni-channelConversationsContactsAgentsOpen Source

Properties

Name Type Description
id number Account ID
name string Name of the account
role string The user role in the account
View JSON Schema on GitHub

JSON Schema

account.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Account ID"
    },
    "name": {
      "type": "string",
      "description": "Name of the account"
    },
    "role": {
      "type": "string",
      "enum": [
        "administrator",
        "agent"
      ],
      "description": "The user role in the account"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chatwoot/main/json-schema/account.json",
  "title": "Account",
  "description": "Chatwoot Account schema"
}