Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaign_id}
/
forward-email
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/123/forward-email?api_key=YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "success": true
}
Forward campaign emails to team members or external recipients. Maintains thread context.

Path Parameters

campaign_id
number
required
Campaign ID

Query Parameters

api_key
string
required
Your SmartLead API key

Request Body

Based on email campaigns forward schema - likely similar to reply-email-thread with forward-specific fields.
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/123/forward-email?api_key=YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'

Response Example

{
  "success": true
}
Schema needs verification from controller implementation - check /server/controller/v1/campaigns/forwardEmailByReplyId.js