HubSpot · JSON Structure

Hubspot Crm Lists Collection Response List Structure

A paginated list of CRM lists.

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

CollectionResponseList is a JSON Structure definition published by HubSpot, describing 2 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

results paging

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A paginated list of CRM lists.",
  "name": "CollectionResponseList",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A HubSpot CRM list.",
        "properties": {
          "listId": {
            "type": "string",
            "description": "The unique identifier for the list."
          },
          "name": {
            "type": "string",
            "description": "The name of the list."
          },
          "listType": {
            "type": "string",
            "description": "Whether the list is static (manually managed) or dynamic (filter-based).",
            "enum": [
              "STATIC",
              "DYNAMIC"
            ]
          },
          "objectTypeId": {
            "type": "string",
            "description": "The object type the list contains (e.g., 0-1 for contacts)."
          },
          "processingStatus": {
            "type": "string",
            "description": "The current processing status of the list."
          },
          "createdAt": {
            "type": "datetime",
            "description": "The date and time the list was created."
          },
          "updatedAt": {
            "type": "datetime",
            "description": "The date and time the list was last updated."
          },
          "filterBranch": {
            "type": "object",
            "description": "The filter definition for dynamic lists."
          },
          "memberCount": {
            "type": "integer",
            "description": "The current number of members in the list."
          }
        }
      }
    },
    "paging": {
      "type": "object",
      "description": "Pagination information.",
      "properties": {
        "next": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}