Update a draft campaign’s content or reply-to settings
cURL
curl --request PUT \ --url https://api.sequenzy.com/api/v1/campaigns/{campaignId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "subject": "<string>", "html": "<string>", "replyTo": "<string>", "replyProfileId": "<string>" } '
{ "success": true, "campaign": { "id": "camp_abc123", "name": "April Launch", "subject": "A quick update", "status": "draft", "replyProfileId": "reply_abc123", "replyToName": "Support", "replyToEmail": "support@example.com" } }
replyProfileId
replyTo
curl -X PUT "https://api.sequenzy.com/api/v1/campaigns/camp_abc123" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "subject": "A quick update", "replyTo": "support@example.com" }'