products_batch_update
Update multiple HubSpot products simultaneously by internal ID or custom identifier, modifying properties like name, price, description, SKU, and product type in a single operation.
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)
{
"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"
}