HubSpot · Schema
BatchReadCallsRequest
Request body for batch reading calls
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales
Properties
| Name | Type | Description |
|---|---|---|
| inputs | array | Array of call identifiers |
| properties | array | Properties to return |
| propertiesWithHistory | array | Properties to return with history |
| idProperty | string | The property to use as the identifier |
JSON Schema
{
"type": "object",
"description": "Request body for batch reading calls",
"properties": {
"inputs": {
"type": "array",
"description": "Array of call identifiers",
"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"
]
}
},
"properties": {
"type": "array",
"description": "Properties to return",
"example": [
"example-value"
],
"items": {
"type": "string"
}
},
"propertiesWithHistory": {
"type": "array",
"description": "Properties to return with history",
"example": [
"example-value"
],
"items": {
"type": "string"
}
},
"idProperty": {
"type": "string",
"description": "The property to use as the identifier",
"example": "500123"
}
},
"required": [
"inputs"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BatchReadCallsRequest"
}