hubspot_get_contact
Retrieve specific contact details from HubSpot CRM using a contact ID to access customer information and properties for sales analysis.
Instructions
Get a specific contact by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | The ID of the contact to retrieve | |
properties | No | List of properties to include in the results |
Input Schema (JSON Schema)
{
"properties": {
"contactId": {
"description": "The ID of the contact to retrieve",
"type": "string"
},
"properties": {
"description": "List of properties to include in the results",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"contactId"
],
"type": "object"
}