HubSpot · JSON Structure

Crm Lists Api Collection Response Membership Structure

A paginated list of list memberships.

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

CollectionResponseMembership 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-lists-api-collection-response-membership-structure.json",
  "name": "CollectionResponseMembership",
  "description": "A paginated list of list memberships.",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A list membership record.",
        "properties": {
          "recordId": {
            "type": "string",
            "description": "The ID of the CRM record that is a member of the list.",
            "example": "500123"
          },
          "addedAt": {
            "type": "datetime",
            "description": "The date and time the record was added to the list.",
            "example": "2025-03-15T14:30:00Z"
          }
        }
      },
      "example": [
        {
          "recordId": "500123",
          "addedAt": "2025-03-15T14:30:00Z"
        }
      ]
    },
    "paging": {
      "type": "object",
      "description": "Pagination information.",
      "properties": {
        "next": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string"
            }
          },
          "example": {
            "after": "example-value"
          }
        }
      }
    }
  }
}