Skip to main content
DELETE
/
experiences
/
{experience_id}
/
recurrences
/
{recurrence_id}
curl -X DELETE \
  -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt/recurrences/rec_AbCdEfGh"
(empty body)

Delete Recurrence

Soft-deletes a recurrence. Future empty slots immediately disappear from the booking page; sessions with existing bookings retain their snapshotted state so attendees aren’t surprised. If you want to keep the recurrence on file without producing new slots, use Update Recurrence with { "status": "paused" } instead — paused recurrences can be re-activated; deleted recurrences cannot. Requires the experiences:write scope.

Path Parameters

experience_id
string
required
Parent experience ID.
recurrence_id
string
required
Recurrence ID.

Response

Returns 204 No Content on success.
curl -X DELETE \
  -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt/recurrences/rec_AbCdEfGh"
(empty body)