HubSpot · JSON Structure

Hubspot Engagement Calls Call Structure

Represents a call engagement in the CRM

Type: object Properties: 7 Required: 5
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Call is a JSON Structure definition published by HubSpot, describing 7 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id properties propertiesWithHistory createdAt updatedAt archived archivedAt

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Represents a call engagement in the CRM",
  "name": "Call",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the call"
    },
    "properties": {
      "type": "object",
      "description": "The call properties"
    },
    "propertiesWithHistory": {
      "type": "object",
      "description": "Properties with their change history"
    },
    "createdAt": {
      "type": "datetime",
      "description": "When the call was created"
    },
    "updatedAt": {
      "type": "datetime",
      "description": "When the call was last updated"
    },
    "archived": {
      "type": "boolean",
      "description": "Whether the call is archived"
    },
    "archivedAt": {
      "type": "datetime",
      "description": "When the call was archived (if archived)"
    }
  },
  "required": [
    "id",
    "properties",
    "createdAt",
    "updatedAt",
    "archived"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}