Skip to main content

Add objects to a channel

Rate limits

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

Assign objects to a channel, without removing the already assigned objects.

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

Example request body

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

With area places:

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

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

  • objects: the full object labels of the objects that need to be assigned to this channel. Objects previously assigned to this channel will remain so.
  • areaPlaces (optional): a map of general admission areas to the number of places within that area to assign to this channel. This allows partial assignment of a GA area's capacity to a channel. See General Admission Area Places on Channels.
Note on seasons

This API call allows overriding channel assignments within a season. E.g. an object in channel X for the season can be assigned to channel Y for an event (and vice-versa).

To mark an object as not assigned to a channel in an event, but still assigned to a channel on the season, use the key of the event and NO_CHANNEL as channel key.

Note

All seats (or tables, booths or GA places) passed in to this API will be considered as "used seats" for pricing purposes.

Note

The specified objects will be un-assigned from any previous channels.
That means that if seat A-1 is already assigned to channelA, and you assign A-1 to channelB using this endpoint, it will no longer be assigned to channelA and only be assigned to channelB.

Note on general admission areas

A general admission area can be assigned to a channel in two ways:

  • As a whole area: include its label in the objects array.
  • As a specific number of places: use the areaPlaces map (e.g. {"GA1": 100}). The places are cumulative: calling this endpoint multiple times will add to the existing count.

A GA area cannot appear in both objects and areaPlaces at the same time.

Response

204 - No Content