Remove a channel
Remove a channel from an event or season. Any objects assigned to it will no longer be assigned to any channel.
- 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