curl -X DELETE -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt
await fetch("https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt", {
method: "DELETE",
headers: { "X-API-KEY": "your_api_key" },
});
{ "deleted": true, "id": "AbCdEfGhIjKlMnOpQrSt" }
{ "error": "Experience not found" }
Experiences
Delete Experience
Soft-delete an experience
DELETE
/
experiences
/
{experienceId}
curl -X DELETE -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt
await fetch("https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt", {
method: "DELETE",
headers: { "X-API-KEY": "your_api_key" },
});
{ "deleted": true, "id": "AbCdEfGhIjKlMnOpQrSt" }
{ "error": "Experience not found" }
Delete Experience
Soft-deletes an experience. The experience is hidden from the dashboard, its public page, and the List Experiences endpoint. The underlying record is kept, so the id stays reserved and historical reporting is unaffected. Only experiences owned by your organization can be deleted; any other experience returns404.
Deleting does not cancel or refund the experience’s sessions and bookings, and attendees are not notified — handle those from the dashboard first if needed.
An experience that is already deleted is no longer visible to your key and returns 404.
Requires the experiences:write scope.
Path Parameters
string
required
The unique identifier of the experience.
Response
Returns200 OK with:
{ "deleted": true, "id": "AbCdEfGhIjKlMnOpQrSt" }
Errors
404 Experience not found— the experience does not exist, is already deleted, or is not owned by your organization.403 insufficient_scope— the API key does not haveexperiences:write.
curl -X DELETE -H "X-API-KEY: your_api_key" \
https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt
await fetch("https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt", {
method: "DELETE",
headers: { "X-API-KEY": "your_api_key" },
});
{ "deleted": true, "id": "AbCdEfGhIjKlMnOpQrSt" }
{ "error": "Experience not found" }

