{ "$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-update-calls-request-schema.json", "title": "BatchUpdateCallsRequest", "description": "Request body for batch updating calls", "type": "object", "properties": { "inputs": { "type": "array", "description": "Array of call updates", "items": { "type": "object", "description": "Input for updating a single item in a batch", "required": [ "id", "properties" ], "properties": { "id": { "type": "string", "description": "The call identifier", "example": "512" }, "properties": { "type": "object", "description": "The properties to update", "additionalProperties": { "type": "string" }, "example": { "key": "value" } } } }, "maxItems": 100, "example": [ { "id": "512", "properties": { "key": "value" } } ] } }, "required": [ "inputs" ] }