HubSpot · JSON Structure

Hubspot Commerce Subscriptions Batch Response Subscription Structure

Type: object Properties: 3
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

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

Properties

status results completedAt

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "BatchResponseSubscription",
  "properties": {
    "status": {
      "type": "string"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "description": "A HubSpot commerce subscription record.",
        "properties": {
          "id": {
            "type": "string",
            "description": "The unique identifier for the subscription."
          },
          "properties": {
            "type": "object",
            "description": "The subscription's properties as key-value pairs."
          },
          "createdAt": {
            "type": "datetime"
          },
          "updatedAt": {
            "type": "datetime"
          },
          "archived": {
            "type": "boolean"
          },
          "associations": {
            "type": "object"
          }
        }
      }
    },
    "completedAt": {
      "type": "datetime"
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}