Remove a channel
Rate limits
This endpoint does not belong to the priority lane. Do not use it within your ticket sales flow.
Remove a channel from an event or season. Any objects assigned to it will no longer be assigned to any channel.
Note that you cannot use this endpoint for events that are part of a season. Manage the list of channels at the season level instead.
- Text
- PHP
- C#
- Java
- Python
- Ruby
- Javascript
- Go
DELETE https://api-{region}.seatsio.net/events/{eventKey}/channels/{channelKey}
$this->seatsioClient->events->channels->remove(
$event->key, // the event key
"channelKey1" // the channel key
);
await Client.Events.Channels.RemoveAsync(
event1.Key, // the event key
"channelKey1" // the channel key
);
client.events.channels.remove(
event.key, // the event key
"channelKey1" // the channel key
);
client.events.channels.remove(
event.key, # the event key
'channelKey1' # the channel key
)
client.events.channels.remove event_key: event.key, channel_key: "channelKey1"
await client.events.channels.remove(
event.key, // the event key
'channelKey1' // the channel key
)
err := client.Channels.Delete(
event.Key, // the event key
"channelKey1", // the channel key
)
Response
204 - No Content