## Delete a changelog **delete** `/v2/changelogs/{id}` Deletes a changelog by its unique identifier. ### Deletion Behavior The changelog and all associated comments are permanently deleted. This action cannot be undone. ### Permissions Only organization admins can delete changelogs. ### Response Returns a deletion confirmation: ```json { "id": "6457e3ff70afca5d8c27dccc", "object": "changelog", "deleted": true } ``` ### Errors - `400` - Invalid changelog ID format - `404` - Changelog not found or doesn't belong to your organization ### Path Parameters - `id: string` Changelog unique identifier ### Header Parameters - `"Featurebase-Version": optional "2026-01-01.nova" or "2025-12-12.clover"` - `"2026-01-01.nova"` - `"2025-12-12.clover"` ### Returns - `id: string` Unique identifier of the deleted changelog - `deleted: true` Indicates the resource was deleted - `true` - `object: "changelog"` Object type identifier - `"changelog"` ### Example ```http curl https://do.featurebase.app/v2/changelogs/$ID \ -X DELETE \ -H "Authorization: Bearer $FEATUREBASE_API_KEY" ``` #### Response ```json { "id": "507f1f77bcf86cd799439011", "deleted": true, "object": "changelog" } ```