List subscribers with pagination and filtering
{ "success": true, "subscribers": [ { "id": "sub_abc123", "email": "[email protected]", "firstName": "John", "lastName": "Doe", "status": "active", "tags": ["customer", "newsletter"], "customAttributes": { "plan": "pro" }, "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-15T10:30:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 150, "totalPages": 8 } }
active
unsubscribed
curl "https://api.sequenzy.com/api/v1/subscribers?page=1&limit=20&status=active" \ -H "Authorization: Bearer YOUR_API_KEY"