Create a new subscriber
{ "success": true, "subscriber": { "id": "sub_abc123", "email": "[email protected]", "firstName": "John", "lastName": "Doe", "status": "active", "tags": ["newsletter"], "customAttributes": { "plan": "pro" }, "createdAt": "2024-01-15T10:30:00Z" } }
active
unsubscribed
curl -X POST "https://api.sequenzy.com/api/v1/subscribers" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "email": "[email protected]", "firstName": "John", "lastName": "Doe", "tags": ["newsletter"], "customAttributes": { "plan": "pro" } }'