HubSpot · JSON Structure

Engagement Calls Api Batch Archive Calls Request Structure

Request body for batch archiving calls

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

BatchArchiveCallsRequest is a JSON Structure definition published by HubSpot, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

inputs

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/engagement-calls-api-batch-archive-calls-request-structure.json",
  "name": "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"
  ]
}