products_update
Update specific properties of a HubSpot product object using its ID. Modify fields like name, description, price, SKU, or billing period while ensuring data accuracy.
Instructions
Perform a partial update of an Object identified by ID. Read-only and non-existent properties will result in an error. Properties values can be cleared by passing an empty string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
productId | Yes | ||
properties | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"productId": {
"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": [
"productId",
"properties"
],
"type": "object"
}