Remove changelog subscribers
DELETE/v2/changelogs/subscribers
Removes email addresses from changelog subscribers in bulk.
Removed subscribers will no longer receive email notifications when new changelogs are published.
Request Body
emails- Array of email addresses to remove (required, 1-1000 emails)
Email Handling
- Emails that don’t exist as subscribers are silently ignored
- Emails are normalized (trimmed, lowercased) before matching
Response
Returns a confirmation with the count of processed emails:
{
"object": "changelog_subscribers_removal",
"count": 150
}
Errors
400- Invalid request (empty emails array, too many emails)
Remove changelog subscribers
curl https://do.featurebase.app/v2/changelogs/subscribers \
-X DELETE \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"count": 150,
"object": "changelog_subscribers_removal"
}Returns Examples
{
"count": 150,
"object": "changelog_subscribers_removal"
}