smartlead_update_campaign_settings
Modify email campaign settings including name, status, and configuration parameters to adapt marketing strategies and control campaign execution.
Instructions
Update a campaign's general settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to update | |
name | No | New name for the campaign | |
settings | No | Additional campaign settings | |
status | No | Status of the campaign |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to update",
"type": "number"
},
"name": {
"description": "New name for the campaign",
"type": "string"
},
"settings": {
"description": "Additional campaign settings",
"type": "object"
},
"status": {
"description": "Status of the campaign",
"enum": [
"active",
"paused",
"completed"
],
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}