Intercom · Schema

Conversation

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
id string
title string
created_at integer
updated_at integer
state string
open boolean
priority string
View JSON Schema on GitHub

JSON Schema

intercom-conversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Conversation",
  "title": "Conversation",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "created_at": {
      "type": "integer"
    },
    "updated_at": {
      "type": "integer"
    },
    "state": {
      "type": "string"
    },
    "open": {
      "type": "boolean"
    },
    "priority": {
      "type": "string"
    }
  }
}