HubSpot · Schema

BatchPortalFlagStateInputItem

Individual item in a batch upsert request

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
portalId integer The unique identifier for the HubSpot portal (account)
flagState string The state of a feature flag
View JSON Schema on GitHub

JSON Schema

hubspot-crm-feature-flags-batch-portal-flag-state-input-item-schema.json Raw ↑
{
  "type": "object",
  "description": "Individual item in a batch upsert request",
  "properties": {
    "portalId": {
      "type": "integer",
      "description": "The unique identifier for the HubSpot portal (account)",
      "format": "int64",
      "example": 98765432
    },
    "flagState": {
      "type": "string",
      "description": "The state of a feature flag",
      "example": "ON",
      "enum": [
        "ON",
        "OFF",
        "ABSENT"
      ]
    }
  },
  "required": [
    "portalId",
    "flagState"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BatchPortalFlagStateInputItem"
}