products_batch_read
Retrieve multiple HubSpot products by ID or custom property values to access detailed product information and historical property changes in batch operations.
Instructions
Read a batch of products by internal ID, or unique property values. Retrieve records by the idProperty parameter to retrieve records by a custom unique value property.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| propertiesWithHistory | Yes | ||
| idProperty | No | ||
| productIds | Yes | ||
| properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"idProperty": {
"type": "string"
},
"productIds": {
"items": {
"type": "string"
},
"type": "array"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"propertiesWithHistory": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"propertiesWithHistory",
"productIds",
"properties"
],
"type": "object"
}