Skip to main content

Remove event from partial season

This call removes an event from a partial season. The event is not deleted from the top-level season.

DELETE https://api-{region}.seatsio.net/seasons/{topLevelSeasonKey}/partial-seasons/{partialSeasonKey}/events/{eventKey}
curl https://api-{region}.seatsio.net/seasons/aTopLevelSeason/partial-seasons/aPartialSeason/events/event1 \
-u aSecretKey: -X DELETE -H 'Content-Type: application/json'

Response

{
"id": 169,
"eventKey": "aPartialSeason",
"tableBookingConfig": {
"mode": "CUSTOM",
"tables": { "T1": "BY_TABLE", "T2": "BY_SEAT" }
},
"supportsBestAvailable": true,
"createdOn": "2017-05-05T10:58:44.715Z",
"isSeason": true,
"isTopLevelSeason": false,
"isPartialSeason": true,
"isEventInSeason": false,
"topLevelSeasonKey": "aSeason",
"events": [
{
"id": 171,
"key": "event2",
...
},
...
]
}