import { PriceOS } from "priceos";import type { MyFeatures } from "./priceos.types";const priceos = new PriceOS<MyFeatures>(process.env.PRICEOS_API_KEY!);const result = await priceos.features.delete("api_calls");
{ "deleted": true, "featureKey": "api_calls"}
Features
Delete Feature
Permanently delete a feature by feature key.
DELETE
/
v1
/
features
/
{featureKey}
Node.js
import { PriceOS } from "priceos";import type { MyFeatures } from "./priceos.types";const priceos = new PriceOS<MyFeatures>(process.env.PRICEOS_API_KEY!);const result = await priceos.features.delete("api_calls");