HubSpot · Schema

CollectionResponseAssociation

A list of associations.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
results array
paging object Pagination information.
View JSON Schema on GitHub

JSON Schema

crm-tickets-api-collection-response-association-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-tickets-api-collection-response-association-schema.json",
  "title": "CollectionResponseAssociation",
  "description": "A list of associations.",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "An association between two CRM objects.",
        "properties": {
          "id": {
            "type": "string",
            "example": "500123"
          },
          "type": {
            "type": "string",
            "example": "standard"
          }
        }
      },
      "example": [
        {
          "id": "500123",
          "type": "standard"
        }
      ]
    },
    "paging": {
      "type": "object",
      "description": "Pagination information.",
      "properties": {
        "next": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string"
            }
          },
          "example": {
            "after": "example-value"
          }
        }
      }
    }
  }
}