hubspot_update_deal
Modify existing deal records in HubSpot CRM by updating properties such as deal stage, amount, or close date to reflect current sales progress and status changes.
Instructions
Update an existing deal in HubSpot
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dealId | Yes | The ID of the deal to update | |
| properties | Yes | Deal properties to update |
Input Schema (JSON Schema)
{
"properties": {
"dealId": {
"description": "The ID of the deal to update",
"type": "string"
},
"properties": {
"additionalProperties": true,
"description": "Deal properties to update",
"type": "object"
}
},
"required": [
"dealId",
"properties"
],
"type": "object"
}