HubSpot · JSON Structure

Hubspot Crm Feature Flags Batch Portal Flag State Input Item Structure

Individual item in a batch upsert request

Type: object Properties: 2 Required: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

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

Properties

portalId flagState

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

JSON Structure

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