import Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const plan = await client.plans.delete('plan_xxxxxxxxxxxxx');
console.log(plan);truePermanently delete a plan from a product. Existing memberships on this plan will not be affected.
Required permissions:
plan:deleteimport Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const plan = await client.plans.delete('plan_xxxxxxxxxxxxx');
console.log(plan);trueA company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************
The unique identifier of the plan to delete.
"plan_xxxxxxxxxxxxx"
A successful response
Represents true or false values.
Was this page helpful?