Topics are currently in private beta and only available to a limited
number of users. APIs might change before GA.To use the methods on this page, you must upgrade your Resend SDK:Get in touch if you’re interested in testing
this feature.
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.topics.remove(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
{
"object": "topic",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"deleted": true
}
Remove an existing topic.
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.topics.remove(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
{
"object": "topic",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"deleted": true
}
npm install resend@6.3.0-canary.3
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.topics.remove(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
{
"object": "topic",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"deleted": true
}
Was this page helpful?