smartlead_add_lead_to_campaign
Add a new lead with email and contact details to a specific email marketing campaign for automated outreach.
Instructions
Add a new lead to a campaign.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to add the lead to | |
company | No | Company of the lead | |
custom_fields | No | Custom fields for the lead | |
Yes | Email address of the lead | ||
first_name | No | First name of the lead | |
last_name | No | Last name of the lead | |
phone | No | Phone number of the lead | |
title | No | Job title of the lead |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to add the lead to",
"type": "number"
},
"company": {
"description": "Company of the lead",
"type": "string"
},
"custom_fields": {
"description": "Custom fields for the lead",
"type": "object"
},
"email": {
"description": "Email address of the lead",
"type": "string"
},
"first_name": {
"description": "First name of the lead",
"type": "string"
},
"last_name": {
"description": "Last name of the lead",
"type": "string"
},
"phone": {
"description": "Phone number of the lead",
"type": "string"
},
"title": {
"description": "Job title of the lead",
"type": "string"
}
},
"required": [
"campaign_id",
"email"
],
"type": "object"
}