HubSpot · JSON Structure

Crm Contacts Api Collection Response Association Structure

A list of associations.

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

CollectionResponseAssociation is a JSON Structure definition published by HubSpot, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

results paging

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-contacts-api-collection-response-association-structure.json",
  "name": "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",
              "description": "The cursor to use to get the next page of results."
            }
          },
          "example": {
            "after": "example-value"
          }
        }
      }
    }
  }
}