## 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: ```json { "object": "changelog_subscribers_removal", "count": 150 } ``` ### Errors - `400` - Invalid request (empty emails array, too many emails) ### Header Parameters - `"Featurebase-Version": optional "2026-01-01.nova" or "2025-12-12.clover"` - `"2026-01-01.nova"` - `"2025-12-12.clover"` ### Body Parameters - `emails: array of string` Array of email addresses to remove from changelog subscribers ### Returns - `count: number` Number of email addresses processed - `object: "changelog_subscribers_removal"` Object type identifier - `"changelog_subscribers_removal"` ### Example ```http curl https://do.featurebase.app/v2/changelogs/subscribers \ -X DELETE \ -H "Authorization: Bearer $FEATUREBASE_API_KEY" ``` #### Response ```json { "count": 150, "object": "changelog_subscribers_removal" } ```