Skip to main content
DELETE
/
api
/
v1
/
email-accounts
/
unsuspend
/
{email_account_id}
curl -X DELETE "https://server.smartlead.ai/api/v1/email-accounts/unsuspend/123?api_key=YOUR_KEY"
{
  "success": true,
  "message": "Email account unsuspended successfully",
  "data": {
    "accountId": 123,
    "isSuspended": false
  }
}
Unsuspending an email account restores it to active status, allowing it to be used for campaign emails and warmup. The account resumes participating in email rotations across all associated campaigns.

Path Parameters

email_account_id
number
required
The email account ID to unsuspend

Query Parameters

api_key
string
required
Your SmartLead API key
curl -X DELETE "https://server.smartlead.ai/api/v1/email-accounts/unsuspend/123?api_key=YOUR_KEY"

Response Codes

200
Success
Email account unsuspended successfully
400
Bad Request
Invalid account ID or account not found
401
Unauthorized
Invalid or missing API key
500
Internal Server Error
Server error occurred
{
  "success": true,
  "message": "Email account unsuspended successfully",
  "data": {
    "accountId": 123,
    "isSuspended": false
  }
}

Reactivation Behavior

When an email account is unsuspended:
  • The is_suspended flag is set to false
  • The account immediately becomes available for campaign email sending
  • Warmup resumes if previously enabled
  • The account rejoins email rotation in all associated campaigns
  • Scheduled emails can be sent from this account
After unsuspending an account, verify:
  • SMTP/IMAP connections are still valid
  • Warmup settings are appropriate for resuming
  • Daily sending limits are correctly configured