notes_get
Retrieve specific note details from HubSpot CRM by providing the note ID, including properties and associated contacts, companies, deals, or tickets.
Instructions
Get details of a specific note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| noteId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"contacts",
"companies",
"deals",
"tickets"
],
"type": "string"
},
"type": "array"
},
"noteId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"noteId"
],
"type": "object"
}