Generate draft email content for a multi-step sequence
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/generate/sequence \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "goal": "<string>", "emailCount": 123, "durationDays": 123 } '
{ "success": true, "goal": "Onboard a new workspace admin", "emails": [ { "subject": "Welcome to your workspace", "previewText": "Start with one quick setup step", "html": "<!DOCTYPE html>...", "delayDays": 0 } ] }
5
10
14
curl -X POST "https://api.sequenzy.com/api/v1/generate/sequence" \ -H "Authorization: Bearer seq_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "goal": "Onboard a new workspace admin", "emailCount": 3, "durationDays": 7 }'