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