Skip to main content
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");
{
  "deleted": true,
  "featureKey": "api_calls"
}

Documentation Index

Fetch the complete documentation index at: https://docs.priceos.com/llms.txt

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

Headers

x-api-key
string
required

API key from your PriceOS dashboard.

Path Parameters

featureKey
string
required

Feature key.

Response

Feature deleted

Feature delete result.

deleted
enum<boolean>
required

Whether the feature was deleted.

Available options:
true
featureKey
string
required

Deleted feature key.