notes_get
Retrieve detailed information about a specific note, including properties and associations like contacts, companies, deals, or tickets, using the HubSpot MCP platform.
Instructions
Get details of a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
associations | No | ||
noteId | Yes | ||
properties | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}