curl -X DELETE \
-H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/experiences/AbCdEfGhIjKlMnOpQrSt/recurrences/rec_AbCdEfGh"
(empty body)
{ "error": "Recurrence not found" }
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'experiences'.",
"required_scope": "experiences:write"
}
Recurrences
Delete Recurrence
Soft-delete a schedule
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)
{ "error": "Recurrence not found" }
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'experiences'.",
"required_scope": "experiences:write"
}
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
string
required
Parent experience ID.
string
required
Recurrence ID.
Response
Returns204 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)
{ "error": "Recurrence not found" }
{
"error": "insufficient_scope",
"message": "This API key does not have 'write' access to 'experiences'.",
"required_scope": "experiences:write"
}

