HubSpot · Schema

BatchArchiveInput

Input for batch archive operations

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array Array of author IDs to archive
View JSON Schema on GitHub

JSON Schema

authors-api-batch-archive-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/authors-api-batch-archive-input-schema.json",
  "title": "BatchArchiveInput",
  "description": "Input for batch archive operations",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID of the author to archive"
          }
        },
        "required": [
          "id"
        ]
      },
      "description": "Array of author IDs to archive",
      "example": [
        {
          "id": "500123"
        }
      ]
    }
  },
  "required": [
    "inputs"
  ]
}