All endpoints require authentication.
Retrieve a list of subscribers
Retrieve a subscriber by it’s ID. The ID can be the id in the database or the subscriber email.
Create a new subscriber.
{
"email": "[email protected]",
"first_name": "Richard",
"last_name": "Hendricks",
"email_status": "active",
"opt_in": true,
}
Update a subscriber.
{
"first_name": "Richard",
"last_name": "Hendricks",
}
Delete a subscriber.
{
"first_name": "Richard",
"last_name": "Hendricks",
}