Retrieve Channel
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { channel, channelError } = await reloop.contacts.channels.get(6 "chn_123456789",7);8
9if (channelError) throw channelError;10
11console.log(channel.id, channel.name);1{2 "object": "channel",3 "id": "chn_123456789",4 "name": "Product Updates",5 "description": "Get the latest news about our products",6 "defaultSubscription": "opt_in",7 "visibility": "public",8 "createdAt": "2026-03-27T10:00:00Z",9 "updatedAt": "2026-03-27T10:00:00Z"10}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.