products_batch_create
Create multiple products in HubSpot CRM simultaneously by providing product details like name, description, price, and SKU in a batch operation.
Instructions
Create a batch of products
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| inputs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"inputs": {
"items": {
"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"
},
"type": "array"
}
},
"required": [
"inputs"
],
"type": "object"
}