smartlead_update_campaign_status
Change the status of an email marketing campaign by updating it to PAUSED, STOPPED, or START using the campaign ID.
Instructions
Update the status of a campaign. Use this specifically for changing a campaign's status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to update the status for | |
status | Yes | New status for the campaign (must be in uppercase) |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to update the status for",
"type": "number"
},
"status": {
"description": "New status for the campaign (must be in uppercase)",
"enum": [
"PAUSED",
"STOPPED",
"START"
],
"type": "string"
}
},
"required": [
"campaign_id",
"status"
],
"type": "object"
}