products_batch_read
Retrieve multiple product records from HubSpot MCP by internal IDs or unique property values. Access product details, including historical property changes, in a single batch call.
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 |
---|---|---|---|
idProperty | No | ||
productIds | Yes | ||
properties | Yes | ||
propertiesWithHistory | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}