crm_get_contact
Retrieve a specific HubSpot contact by ID with selected properties and associated records like companies, deals, or engagements for CRM data access and management.
Instructions
Get a single contact by ID with specific properties and associations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contactId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"companies",
"deals",
"tickets",
"calls",
"emails",
"meetings",
"notes"
],
"type": "string"
},
"type": "array"
},
"contactId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"contactId"
],
"type": "object"
}