emails_batch_archive
Archive multiple email records in one action using this HubSpot MCP server tool. Simplify bulk email deletion with a single API request, saving time and improving CRM management.
Instructions
Archive (delete) multiple email records in a single request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emailIds | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"emailIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"emailIds"
],
"type": "object"
}