crm_get_lead
Retrieve a specific lead's details including properties and associated companies, contacts, deals, notes, or tasks from HubSpot CRM using the lead ID.
Instructions
Get a single lead by ID with specific properties and associations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| leadId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"companies",
"contacts",
"deals",
"notes",
"tasks"
],
"type": "string"
},
"type": "array"
},
"leadId": {
"type": "string"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"leadId"
],
"type": "object"
}