communications_get_preferences
Retrieve communication preferences for a specific contact using their ID to manage subscriptions effectively within HubSpot MCP.
Instructions
Get communication preferences for a contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | ||
subscriptionId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contactId": {
"type": "string"
},
"subscriptionId": {
"type": "string"
}
},
"required": [
"contactId"
],
"type": "object"
}