Skip to main content
POST
/
api
/
v1
/
campaigns
/
{campaignId}
/
test
Send Campaign Test
curl --request POST \
  --url https://api.sequenzy.com/api/v1/campaigns/{campaignId}/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": "<string>"
}
'
{
  "success": true,
  "message": "Test email would be sent to you@example.com",
  "campaignId": "camp_abc123"
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Request a test send for a campaign. The current API confirms the target address and campaign ID.

Request

campaignId
string
required
Campaign ID.
to
string
required
Email address that should receive the test.
curl -X POST "https://api.sequenzy.com/api/v1/campaigns/camp_abc123/test" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "you@example.com"}'

Responses

{
  "success": true,
  "message": "Test email would be sent to you@example.com",
  "campaignId": "camp_abc123"
}