notes_batch_archive
Archive multiple notes in bulk by providing a list of note IDs in a single request. Simplify CRM data management with HubSpot MCP’s batch processing capabilities.
Instructions
Archive (delete) multiple notes in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteIds | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"noteIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"noteIds"
],
"type": "object"
}