Request body for batch archiving calls
{ "type": "object", "description": "Request body for batch archiving calls", "properties": { "inputs": { "type": "array", "description": "Array of call identifiers to archive", "example": [ { "id": "512" } ], "items": { "type": "object", "description": "Input for reading a single item in a batch", "properties": { "id": { "type": "string", "description": "The call identifier", "example": "512" } }, "required": [ "id" ] } } }, "required": [ "inputs" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchArchiveCallsRequest" }