Change the status of a campaign (start, pause, stop) Updates campaign status to START, PAUSE, or STOP
Path Parameters
The ID of the campaign to update
Query Parameters
Request Body
New campaign statusValid values (from API_EMAIL_CAMPAIGN_STATUS):
START - Start or resume campaign (not “ACTIVE”)
PAUSED - Temporarily pause sending
STOPPED - Permanently stop campaign
Note: Use “START” not “ACTIVE” when activating a campaign
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/123/status?api_key=YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"status": "START"}'
Response Codes
Invalid request parameters or malformed request body
Invalid or missing API key. Check your authentication.
The requested resource (campaign, lead, email account, etc.) does not exist or you don’t have access to it
Request validation failed. Check parameter types, required fields, and value constraints.
Too many requests. Please slow down and retry after the rate limit resets.
Server error occurred. Please try again or contact support if the issue persists.
API is temporarily unavailable or under maintenance. Please try again later.
{
"success": true,
"message": "Campaign status updated successfully",
"campaign": {
"id": 123,
"status": "ACTIVE"
}
}
Status Descriptions
| Status | What It Does | Reversible? |
|---|
| ACTIVE | Starts sending emails according to schedule | Yes |
| PAUSED | Temporarily stops all sending | Yes |
| STOPPED | Permanently stops campaign | No |
| ARCHIVED | Hides from active campaigns list | Yes |
STOPPED status is permanent and cannot be undone. Use PAUSED if you might want to resume later.
When to Use Each Status
ACTIVE
- Campaign is fully configured
- All sequences added
- Email accounts connected
- Leads imported
- Ready to send
PAUSED
- Need to make adjustments
- Waiting for more leads
- Testing sequences
- Temporary hold
STOPPED
- Campaign completed its goal
- Pivoting strategy
- No longer needed
- Permanently ending
ARCHIVED
- Campaign is done but keep for records
- Want to hide from active list
- May reference later
Implementation Details
START status triggers campaign validation and begins sending. STOP is permanent. Use PAUSE for temporary holds.
Response Format: object