hubspot_get_deal_notes
Retrieve notes linked to a specific HubSpot deal to track communication history, updates, and important details for sales analysis and deal management.
Instructions
Get notes associated with a specific deal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Pagination cursor for next page of results | |
dealId | Yes | The ID of the deal to get notes for | |
limit | No | Maximum number of notes to return (default 20) |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"dealId": {
"description": "The ID of the deal to get notes for",
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum number of notes to return (default 20)",
"type": "number"
}
},
"required": [
"dealId"
],
"type": "object"
}