HubSpot · Schema

ObjectReference

Reference to a CRM object by ID

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
id string ID of the object
View JSON Schema on GitHub

JSON Schema

crm-associations-api-object-reference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-associations-api-object-reference-schema.json",
  "title": "ObjectReference",
  "description": "Reference to a CRM object by ID",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the object",
      "example": "500123"
    }
  },
  "required": [
    "id"
  ]
}