Skip to main content

Remove objects from a channel

Rate limits

This endpoint does not belong to the priority lane. Do not use it within your ticket sales flow.

Remove a list of assigned objects from a channel.

DELETE https://api-{region}.seatsio.net/events/{eventKey}/channels/{channelKey}/objects

Example request body

{
"objects": ["A-1", "A-2"]
}

With area places:

{
"objects": [],
"areaPlaces": {
"GA1": 50
}
}

The request body should be a JSON object with these properties:

  • objects: the object labels of the objects that need to be removed from this channel. Objects that were previously assigned to this channel and are not in this list, will remain assigned to this channel.
  • areaPlaces (optional): a map of general admission areas to the number of places to remove from this channel. The places are decremented from the existing count. See General Admission Area Places on Channels.

Response

204 - No Content