Delete Channel
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { channel, channelError } = await reloop.contacts.channels.delete(6 "chn_123456789",7);8
9if (channelError) throw channelError;10
11console.log(channel.id, channel.success);1{2 "object": "channel",3 "success": true,4 "id": "con_123456789",5 "name": "Newsletter",6 "event": "evt_123456789"7}Path Parameters
channel_idstringRequired
Channel ID
Was this page helpful?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.