products_read
Retrieve HubSpot product details by ID to access specific product information, properties, and associated data from the CRM system.
Instructions
Read an Object identified by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| productId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"type": "string"
},
"type": "array"
},
"productId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"productId"
],
"type": "object"
}