Experiences
Delete an Experience
Returns a specific Experience, using its unique ID. Experiences represent what the customer receives or unlocks when they purchase a Membership.
DELETE
/
v2
/
experiences
/
{id}
Header
Path
curl --request DELETE \
--url https://api.whop.com/v2/experiences/{id}
{
"access_passes": "string",
"description": "string",
"experience_type": "discord",
"id": "string",
"name": "string",
"products": "string",
"properties": "object"
}
Headers
Authorization
string
Your API key, which can be found on the Whop Business Dashboard. You must prepend your key with the word 'Bearer', which will look like Bearer ***************************
Path Parameters
idrequired
string
The ID of the Experience, which will look like exp_*************
Response
204 - application/json
access_passes
string
description
string
A short description of what the Experience offers
experience_type
enum<string>
The type of Experience
Available options:
discord
, software
, content
, custom
, proxy
, native_content
, app
, zentask
, coffeecard
, courses
, link
, file
, webapp
, telegram
, gpt_plugin
, trading_view
, delivery
, ebook
, has_interface
id
string
The ID of the Experience, which will look like exp_*************
name
string
The name of the Experience
products
string
The Products that are connected to this Experience. By default this will just an array of IDs of these Products, but you can expand it to get more information about each Product by passing [product]
in the expand
parameter.
properties
object
The properties of the Experience, used specifically for fields on different Experience types
curl --request DELETE \
--url https://api.whop.com/v2/experiences/{id}
{
"access_passes": "string",
"description": "string",
"experience_type": "discord",
"id": "string",
"name": "string",
"products": "string",
"properties": "object"
}