Skip to main content
POST
/
campaigns
/
:id
/
send
Send Campaign
curl --request POST \
  --url https://api-prod.syntr.co/api/v1/email-marketing/campaigns/:id/send \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "send_immediately": true,
  "email_provider": "<string>",
  "sender_email_id": "<string>"
}
'
{
  "success": true,
  "data": {
    "queue_position": 1,
    "eta": "0.2s"
  }
}

Request Body

send_immediately
BOOLEAN
Whether to start now
email_provider
STRING
Provider override (gmail, ses, smtp)
sender_email_id
UUID
Override sender ID
{
  "success": true,
  "data": {
    "queue_position": 1,
    "eta": "0.2s"
  }
}