Skip to main content

Replace channels on an event

Rate limits

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

Replaces the list of channels for an event.

POST https://api-{region}.seatsio.net/events/{eventKey}/channels/replace
{
"channels": [
{
"key": "fc34bdf0-0175-5a0a-e9af-9b0310585056",
"name": "Channel Watermelon",
"color": "#ED303D",
"index": 1,
"objects": ["A-1", "A-2"]
},
{
"key": "7a273f09-8c3a-2782-af93-6546d32abbe5",
"name": "Channel Lime",
"color": "#97CA48",
"index": 2,
"objects": []
}
]
}

The request body should contain a json object with one property (channels), that has a json array with the channels.

A channel has the following properties:

  • key: this needs to be unique and is required
  • name: this needs to be unique and is required
  • color (optional): a css color; color is used in the Event Manager, to be able to distinguish different channels. End users (ticket buyers) will not get to see the channel by color.
  • index (optional): a number that indicates the ordering of channels; index is used in the Event Manager, to keep ordering of channels consistent.
  • objects (optional): an array of objects assigned to the channel

Response

204 - No Content