hubspot_update_contact
Modify existing contact information in HubSpot CRM by updating properties such as email, phone number, or company details using the contact's unique identifier.
Instructions
Update an existing contact in HubSpot
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contactId | Yes | The ID of the contact to update | |
| properties | Yes | Contact properties to update |
Input Schema (JSON Schema)
{
"properties": {
"contactId": {
"description": "The ID of the contact to update",
"type": "string"
},
"properties": {
"additionalProperties": true,
"description": "Contact properties to update",
"type": "object"
}
},
"required": [
"contactId",
"properties"
],
"type": "object"
}