products_batch_update
Modify multiple products simultaneously in HubSpot MCP by updating properties such as name, description, price, or SKU using internal ID or a specified unique identifier.
Instructions
Update a batch of products by internal ID, or unique values specified by the idProperty
query param.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"inputs": {
"items": {
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"idProperty": {
"type": "string"
},
"objectWriteTraceId": {
"type": "string"
},
"properties": {
"additionalProperties": {},
"properties": {
"description": {
"type": "string"
},
"hs_product_type": {
"type": "string"
},
"hs_recurring_billing_period": {
"type": "string"
},
"name": {
"type": "string"
},
"price": {
"type": "number"
},
"sku": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"properties"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}