products_create
Create new products in HubSpot CRM by defining properties like name, description, price, and SKU to expand your product catalog.
Instructions
Create a product with the given properties and return a copy of the object, including the ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"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": [
"properties"
],
"type": "object"
}