{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-feature-flags-api-batch-delete-input-structure.json", "name": "BatchDeleteInput", "description": "Input payload for batch deleting portal flag states", "type": "object", "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", "required": [ "portalId" ], "properties": { "portalId": { "type": "int64", "description": "The unique identifier for the HubSpot portal (account)", "example": 98765432 } } }, "example": [ { "portalId": 98765432 } ] } }, "required": [ "inputs" ] }