HubSpot · Schema

BatchArchiveCallsRequest

Request body for batch archiving calls

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
inputs array Array of call identifiers to archive
View JSON Schema on GitHub

JSON Schema

engagement-calls-api-batch-archive-calls-request-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/engagement-calls-api-batch-archive-calls-request-schema.json",
  "title": "BatchArchiveCallsRequest",
  "description": "Request body for batch archiving calls",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "description": "Array of call identifiers to archive",
      "items": {
        "type": "object",
        "description": "Input for reading a single item in a batch",
        "required": [
          "id"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The call identifier",
            "example": "512"
          }
        }
      },
      "maxItems": 100,
      "example": [
        {
          "id": "512"
        }
      ]
    }
  },
  "required": [
    "inputs"
  ]
}