POST
https://api.whop.com/api
/
v2
/
experiences
/
{id}
curl --request POST \
  --url https://api.whop.com/api/v2/experiences/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "id": "<string>",
  "experience_type": "has_interface",
  "name": "<string>",
  "description": "<string>",
  "properties": {},
  "products": "<string>",
  "access_passes": "<string>"
}

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

id
string
required

The ID of the Experience, which will look like exp_*************

Query Parameters

expand
enum<string>[]

Whether or not to expand the Products on the returned Experience(s). Pass an array with each object(s) you want to expand, e.g. [products]

Body

application/json

Update an Experience

Response

201 - application/json

Update an Experience

Experience model