HubSpot · Schema

AssociationTypeInput

Input for specifying an association type

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
associationCategory string
associationTypeId integer
View JSON Schema on GitHub

JSON Schema

crm-associations-api-association-type-input-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-association-type-input-schema.json",
  "title": "AssociationTypeInput",
  "description": "Input for specifying an association type",
  "type": "object",
  "properties": {
    "associationCategory": {
      "type": "string",
      "enum": [
        "HUBSPOT_DEFINED",
        "USER_DEFINED",
        "INTEGRATOR_DEFINED"
      ],
      "example": "HUBSPOT_DEFINED"
    },
    "associationTypeId": {
      "type": "integer",
      "example": 500123
    }
  },
  "required": [
    "associationCategory",
    "associationTypeId"
  ]
}