Skip to content
Dashboard

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)
Header ParametersExpand Collapse
"Featurebase-Version": optional "2026-01-01.nova" or "2025-12-12.clover"
One of the following:
"2026-01-01.nova"
"2025-12-12.clover"
Body ParametersJSONExpand Collapse
emails: array of string

Array of email addresses to remove from changelog subscribers

ReturnsExpand Collapse
count: number

Number of email addresses processed

object: "changelog_subscribers_removal"

Object type identifier

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"
}