Delete Feature
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/features/{feature_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true
}Features
Delete Feature
DELETE
/
features
/
{feature_id}
Delete Feature
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.useautumn.com/v1/features/{feature_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true
}If the feature belongs to a product or credit system, it cannot be deleted and must be archived instead. Use the Update Feature endpoint to set the
archived field to true.⌘I

