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:
{
"id": "6457e3ff70afca5d8c27dccc",
"object": "changelog",
"deleted": true
}
Errors
400- Invalid changelog ID format404- Changelog not found or doesn’t belong to your organization
Delete a changelog
curl https://do.featurebase.app/v2/changelogs/$ID \
-X DELETE \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"id": "507f1f77bcf86cd799439011",
"deleted": true,
"object": "changelog"
}Returns Examples
{
"id": "507f1f77bcf86cd799439011",
"deleted": true,
"object": "changelog"
}