HubSpot · Schema

PortalFlagStateInput

Input payload for setting a portal flag state

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
flagState string The state of a feature flag
View JSON Schema on GitHub

JSON Schema

crm-feature-flags-api-portal-flag-state-input-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-feature-flags-api-portal-flag-state-input-schema.json",
  "title": "PortalFlagStateInput",
  "description": "Input payload for setting a portal flag state",
  "type": "object",
  "properties": {
    "flagState": {
      "type": "string",
      "description": "The state of a feature flag",
      "enum": [
        "ON",
        "OFF",
        "ABSENT"
      ],
      "example": "ON"
    }
  },
  "required": [
    "flagState"
  ]
}