smartlead_update_lead_status
Update the status of a lead in Smartlead's email marketing system by providing the lead ID and new status value.
Instructions
Update a lead's status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead to update | |
status | Yes | New status for the lead |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead to update",
"type": "number"
},
"status": {
"description": "New status for the lead",
"type": "string"
}
},
"required": [
"lead_id",
"status"
],
"type": "object"
}