products_create
Generate and manage product entries in HubSpot CRM by specifying properties like name, description, price, SKU, and billing period. Returns the created object with ID.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}