Intercom · Schema

ContactList

AICustomer ServiceCustomer SupportMessaging

Properties

Name Type Description
type string
data array
total_count integer
View JSON Schema on GitHub

JSON Schema

intercom-contactlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactList",
  "title": "ContactList",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Contact"
      }
    },
    "total_count": {
      "type": "integer"
    }
  }
}