smartlead_get_campaigns_by_lead
Retrieve all email marketing campaigns associated with a specific lead by providing the lead ID to track campaign participation and engagement.
Instructions
Fetch all campaigns that a lead belongs to.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead to fetch campaigns for |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead to fetch campaigns for",
"type": "number"
}
},
"required": [
"lead_id"
],
"type": "object"
}