Intercom · Schema

Admin

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
id string
name string
email string
away_mode_enabled boolean
away_mode_reassign boolean
View JSON Schema on GitHub

JSON Schema

intercom-admin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Admin",
  "title": "Admin",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "away_mode_enabled": {
      "type": "boolean"
    },
    "away_mode_reassign": {
      "type": "boolean"
    }
  }
}