List Channels
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { channels, channelError } = await reloop.contacts.channels.list({6 page: 1,7 limit: 10,8});9
10if (channelError) throw channelError;11
12console.log(channels.total, channels.channels);1{2 "object": "channel",3 "channels": [4 {5 "id": "channel_123456789",6 "name": "Newsletter",7 "description": "example_description",8 "defaultSubscription": "opt_in",9 "visibility": "private",10 "createdAt": "2026-03-23T10:00:00.000Z",11 "updatedAt": "2026-03-23T10:00:00.000Z",12 "subscriberCount": 013 }14 ],15 "total": 1,16 "page": 0,17 "limit": 0,18 "event": "evt_123456789"19}Query Parameters
pagenumberdefault: 1
- Minimum value:
1
limitnumberdefault: 100
- Minimum value:
1 - Maximum value:
100
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.