Reply to leads directly from campaign view. Maintains conversation thread and tracks reply in campaign statistics.
Path Parameters
Query Parameters
Request Body
Email statistics ID of the message to reply to
Recipient email (optional, defaults to lead email)
Schedule reply for later (ISO 8601)
Message ID being replied to
Original email body (for context)
CC recipients (comma-separated)
BCC recipients (comma-separated)
curl -X POST "https://server.smartlead.ai/api/v1/campaigns/123/reply-email-thread?api_key=YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"email_stats_id": "abc-123",
"email_body": "Thanks for your interest! Let me know if you have any questions.",
"add_signature": true
}'
Response Example
{
"success": true,
"message": "Reply sent successfully"
}