smartlead_update_lead
Modify lead details in Smartlead by updating email, name, company, title, phone, or custom fields using the lead's ID.
Instructions
Update an existing lead's information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | No | New company for the lead | |
custom_fields | No | Updated custom fields for the lead | |
No | New email address for the lead | ||
first_name | No | New first name for the lead | |
last_name | No | New last name for the lead | |
lead_id | Yes | ID of the lead to update | |
phone | No | New phone number for the lead | |
title | No | New job title for the lead |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"description": "New company for the lead",
"type": "string"
},
"custom_fields": {
"description": "Updated custom fields for the lead",
"type": "object"
},
"email": {
"description": "New email address for the lead",
"type": "string"
},
"first_name": {
"description": "New first name for the lead",
"type": "string"
},
"last_name": {
"description": "New last name for the lead",
"type": "string"
},
"lead_id": {
"description": "ID of the lead to update",
"type": "number"
},
"phone": {
"description": "New phone number for the lead",
"type": "string"
},
"title": {
"description": "New job title for the lead",
"type": "string"
}
},
"required": [
"lead_id"
],
"type": "object"
}