get_lead
Retrieve lead details by ID from the Multilead platform, including properties, tags, and custom fields for lead management.
Instructions
Retrieve a lead by ID
Args: lead_id: The unique identifier of the lead
Returns: Lead object with all properties, tags, and custom fields
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lead_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"type": "string"
}
},
"required": [
"lead_id"
],
"type": "object"
}