Unified.to · Schema

CrmEvent

An event represents an event, activity, or engagement and is always associated with a deal, contact, or company

IntegrationsUnified API

Properties

Name Type Description
call object
company_ids object
contact_ids object
created_at string
deal_ids object
email object
form object
id string
lead_ids object
marketing_email object
meeting object
note object
page_view object
raw object
task object
type string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-crmevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CrmEvent",
  "title": "CrmEvent",
  "description": "An event represents an event, activity, or engagement and is always associated with a deal, contact, or company",
  "properties": {
    "call": {
      "$ref": "#/components/schemas/property_CrmEvent_call"
    },
    "company_ids": {
      "$ref": "#/components/schemas/property_CrmEvent_company_ids"
    },
    "contact_ids": {
      "$ref": "#/components/schemas/property_CrmEvent_contact_ids"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "deal_ids": {
      "$ref": "#/components/schemas/property_CrmEvent_deal_ids"
    },
    "email": {
      "$ref": "#/components/schemas/property_CrmEvent_email"
    },
    "form": {
      "$ref": "#/components/schemas/property_CrmEvent_form"
    },
    "id": {
      "type": "string"
    },
    "lead_ids": {
      "$ref": "#/components/schemas/property_CrmEvent_lead_ids"
    },
    "marketing_email": {
      "$ref": "#/components/schemas/property_CrmEvent_marketing_email"
    },
    "meeting": {
      "$ref": "#/components/schemas/property_CrmEvent_meeting"
    },
    "note": {
      "$ref": "#/components/schemas/property_CrmEvent_note"
    },
    "page_view": {
      "$ref": "#/components/schemas/property_CrmEvent_page_view"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "task": {
      "$ref": "#/components/schemas/property_CrmEvent_task"
    },
    "type": {
      "enum": [
        "NOTE",
        "EMAIL",
        "TASK",
        "MEETING",
        "CALL",
        "MARKETING_EMAIL",
        "FORM",
        "PAGE_VIEW"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}