HubSpot · JSON Structure

Hubspot Crm Feature Flags Batch Delete Input Structure

Input payload for batch deleting portal flag states

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

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

Properties

inputs

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Input payload for batch deleting portal flag states",
  "name": "BatchDeleteInput",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "List of portal IDs to delete flag states for",
      "items": {
        "type": "object",
        "description": "Individual item in a batch delete request",
        "properties": {
          "portalId": {
            "type": "integer",
            "description": "The unique identifier for the HubSpot portal (account)"
          }
        },
        "required": [
          "portalId"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}