Skip to main content
DELETE
/
experiences
/
{id}
JavaScript
import Whopsdk from 'whopsdk';

const client = new Whopsdk({
  apiKey: 'My API Key',
});

const experience = await client.experiences.delete('exp_xxxxxxxxxxxxxx');

console.log(experience);
true

Authorizations

Authorization
string
header
required

The app API key from an app from the /dashboard/developer page

Path Parameters

id
string
required
Example:

"exp_xxxxxxxxxxxxxx"

Response

A successful response

Represents true or false values.

I