smartlead_update_campaign_schedule
Modify email campaign scheduling parameters including timezone, active days, send hours, lead limits, and timing intervals to optimize outreach cadence.
Instructions
Update a campaign's schedule settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
campaign_id | Yes | ID of the campaign to update | |
days_of_the_week | No | Days of the week to send emails (1-7, where 1 is Monday) | |
end_hour | No | End hour in 24-hour format (e.g., "17:00") | |
max_new_leads_per_day | No | Maximum number of new leads per day | |
min_time_btw_emails | No | Minimum time between emails in minutes | |
schedule_start_time | No | Schedule start time in ISO format | |
start_hour | No | Start hour in 24-hour format (e.g., "09:00") | |
timezone | No | Timezone for the campaign (e.g., "America/Los_Angeles") |
Input Schema (JSON Schema)
{
"properties": {
"campaign_id": {
"description": "ID of the campaign to update",
"type": "number"
},
"days_of_the_week": {
"description": "Days of the week to send emails (1-7, where 1 is Monday)",
"items": {
"type": "number"
},
"type": "array"
},
"end_hour": {
"description": "End hour in 24-hour format (e.g., \"17:00\")",
"type": "string"
},
"max_new_leads_per_day": {
"description": "Maximum number of new leads per day",
"type": "number"
},
"min_time_btw_emails": {
"description": "Minimum time between emails in minutes",
"type": "number"
},
"schedule_start_time": {
"description": "Schedule start time in ISO format",
"type": "string"
},
"start_hour": {
"description": "Start hour in 24-hour format (e.g., \"09:00\")",
"type": "string"
},
"timezone": {
"description": "Timezone for the campaign (e.g., \"America/Los_Angeles\")",
"type": "string"
}
},
"required": [
"campaign_id"
],
"type": "object"
}