Skip to main content
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
}

Documentation Index

Fetch the complete documentation index at: https://docs-v1.useautumn.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

feature_id
string
required

Response

200 - application/json
success
boolean
required