Update a subscriber’s details
{ "success": true, "subscriber": { "id": "sub_abc123", "email": "[email protected]", "firstName": "Jane", "lastName": "Doe", "status": "active", "tags": ["customer", "vip"], "customAttributes": { "plan": "pro" }, "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-16T14:20:00Z" } }
active
unsubscribed
curl -X PATCH "https://api.sequenzy.com/api/v1/subscribers/user%40sequenzy.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "firstName": "Jane", "status": "active", "tags": ["customer", "vip"] }'