curl -X POST "https://server.smartlead.ai/api/v1/campaigns/123/forward-email?api_key=YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{}'
import requests
# Implementation details need verification from controller
response = requests.post(
f"https://server.smartlead.ai/api/v1/campaigns/123/forward-email",
params={"api_key": "YOUR_API_KEY"},
json={}
)
{
"success": true
}
Campaign Management
Forward Campaign Email
Forward a campaign email to other recipients
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 '{}'
import requests
# Implementation details need verification from controller
response = requests.post(
f"https://server.smartlead.ai/api/v1/campaigns/123/forward-email",
params={"api_key": "YOUR_API_KEY"},
json={}
)
{
"success": true
}
Forward campaign emails to team members or external recipients. Maintains thread context.
Path Parameters
number
required
Campaign ID
Query Parameters
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 '{}'
import requests
# Implementation details need verification from controller
response = requests.post(
f"https://server.smartlead.ai/api/v1/campaigns/123/forward-email",
params={"api_key": "YOUR_API_KEY"},
json={}
)
Response Example
{
"success": true
}
Schema needs verification from controller implementation - check
/server/controller/v1/campaigns/forwardEmailByReplyId.js