HubSpot · JSON Structure

Hubspot Blog Posts Batch Input Structure

Input for batch archive operations

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

BatchInput 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 for batch archive operations",
  "name": "BatchInput",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of items to process",
      "items": {
        "type": "object",
        "description": "Single item in a batch archive operation",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the post to process"
          }
        },
        "required": [
          "id"
        ]
      }
    }
  },
  "required": [
    "inputs"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}