Sign inGet started

Remove a competitor brand from the watchlist

DELETE
/v1/email/competitive/watchlist/brands/{watchlist_brand_id}
// Requires Insights preview access for the organization.
const watchlist = await bird.email.competitive.watchlist.get({ range: 30 });
const entry = watchlist.data.find((row) => row.name === "Everlane" && row.watchlist_brand_id);
if (!entry?.watchlist_brand_id) throw new Error("Add Everlane to the watchlist first");
const watchlistBrandId = entry.watchlist_brand_id;
await bird.email.competitive.watchlist.brands.delete(watchlistBrandId);
Takes a brand off the workspace's watchlist and frees its place in the organization's allowance. Nothing about the brand is retained, so adding it again starts a fresh entry.
API-key calls require Insights preview access for your organization.
Parameter
watchlist_brand_id
string
The watchlist entry to act on.