HubSpot · Schema

Membership

A list membership record.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
recordId string The ID of the CRM record that is a member of the list.
addedAt string The date and time the record was added to the list.
View JSON Schema on GitHub

JSON Schema

crm-lists-api-membership-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-lists-api-membership-schema.json",
  "title": "Membership",
  "description": "A list membership record.",
  "type": "object",
  "properties": {
    "recordId": {
      "type": "string",
      "description": "The ID of the CRM record that is a member of the list.",
      "example": "500123"
    },
    "addedAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the record was added to the list.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}