crm_get_contact
Retrieve detailed information about a specific contact from HubSpot CRM, including properties and associations like companies, deals, and notes, by providing the contact ID.
Instructions
Get a single contact by ID with specific properties and associations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
associations | No | ||
contactId | Yes | ||
properties | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}