Retrieve Channel

GET
https://reloop.sh/api/contacts/v1/channels/:channel_id

Path Parameters

channel_idstringRequired

Channel ID

import { Reloop } from "reloop-email";

const reloop = new Reloop({ apiKey: "rl_123456789" });

const { response: channel, error } = await reloop.contacts.channels.get("chn_123456789");
if (error) throw error;
{
  "object": "channel",
  "id": "chn_123456789",
  "name": "Product Updates",
  "description": "Get the latest news about our products",
  "defaultSubscription": "opt_in",
  "visibility": "public",
  "createdAt": "2026-03-27T10:00:00Z",
  "updatedAt": "2026-03-27T10:00:00Z"
}

Was this page helpful?

Edit this page