Delete Channel

DELETE
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, error } = await reloop.contacts.channels.delete("chn_123456789");
if (error) throw error;
{
  "object": "channel",
  "success": true,
  "id": "con_123456789",
  "name": "Newsletter",
  "event": "evt_123456789"
}

Was this page helpful?

Edit this page