hubspot_get_deal
Retrieve specific deal details from HubSpot CRM using a deal ID to access sales pipeline information and transaction data for analysis.
Instructions
Get a specific deal by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dealId | Yes | The ID of the deal to retrieve | |
properties | No | List of properties to include in the results |
Input Schema (JSON Schema)
{
"properties": {
"dealId": {
"description": "The ID of the deal to retrieve",
"type": "string"
},
"properties": {
"description": "List of properties to include in the results",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"dealId"
],
"type": "object"
}