Get a subscriber by email address
curl --request GET \
--url https://api.sequenzy.com/api/v1/subscribers/{email} \
--header 'Authorization: Bearer <token>'{
"success": true,
"subscriber": {
"id": "sub_abc123",
"email": "user@sequenzy.com",
"firstName": "John",
"lastName": "Doe",
"status": "active",
"tags": ["customer", "newsletter"],
"customAttributes": { "plan": "pro" },
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}
curl "https://api.sequenzy.com/api/v1/subscribers/user%40sequenzy.com" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"subscriber": {
"id": "sub_abc123",
"email": "user@sequenzy.com",
"firstName": "John",
"lastName": "Doe",
"status": "active",
"tags": ["customer", "newsletter"],
"customAttributes": { "plan": "pro" },
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}
curl --request GET \
--url https://api.sequenzy.com/api/v1/subscribers/{email} \
--header 'Authorization: Bearer <token>'{
"success": true,
"subscriber": {
"id": "sub_abc123",
"email": "user@sequenzy.com",
"firstName": "John",
"lastName": "Doe",
"status": "active",
"tags": ["customer", "newsletter"],
"customAttributes": { "plan": "pro" },
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
}