communications_subscribe_contact
Enable a contact to receive all email communications by specifying their ID and subscription legal basis in the HubSpot MCP server. Manage CRM data directly through this tool.
Instructions
Subscribe a contact to all email communications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | ||
portalSubscriptionLegalBasis | No | ||
portalSubscriptionLegalBasisExplanation | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"type": "string"
},
"portalSubscriptionLegalBasis": {
"enum": [
"LEGITIMATE_INTEREST_CLIENT",
"LEGITIMATE_INTEREST_PUB",
"PERFORMANCE_OF_CONTRACT",
"CONSENT_WITH_NOTICE",
"CONSENT_WITH_NOTICE_AND_OPT_OUT"
],
"type": "string"
},
"portalSubscriptionLegalBasisExplanation": {
"type": "string"
}
},
"required": [
"contactId"
],
"type": "object"
}