import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.cancel(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->cancel('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.cancel(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _canceled = resend
.broadcasts
.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
CancelBroadcastResponseSuccess data = resend.broadcasts().cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
await resend.BroadcastCancelAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
curl -X POST 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b/cancel' \
-H 'Authorization: Bearer re_xxxxxxxxx' \
-H 'Content-Type: application/json'
resend broadcasts cancel 559ac32e-9ef5-46fb-82a1-b76b840c0f7b
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b"
}
Cancel Broadcast
Cancel a queued or scheduled broadcast.
POST
/
broadcasts
/
:broadcast_id
/
cancel
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.cancel(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->cancel('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.cancel(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _canceled = resend
.broadcasts
.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
CancelBroadcastResponseSuccess data = resend.broadcasts().cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
await resend.BroadcastCancelAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
curl -X POST 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b/cancel' \
-H 'Authorization: Bearer re_xxxxxxxxx' \
-H 'Content-Type: application/json'
resend broadcasts cancel 559ac32e-9ef5-46fb-82a1-b76b840c0f7b
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b"
}
You can only cancel Broadcasts that are
queued or scheduled. When you cancel a Broadcast, here’s what happens based on its status:
scheduled→draft: no emails are sent. You can update the Broadcast and reschedule it to be sent.queued→canceled: emails that have already been sent are not affected, but any emails still in the queue will no longer be sent.
Path Parameters
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.broadcasts.cancel(
'559ac32e-9ef5-46fb-82a1-b76b840c0f7b',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->broadcasts->cancel('559ac32e-9ef5-46fb-82a1-b76b840c0f7b');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Broadcasts.cancel(id="559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Broadcasts.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Broadcasts.Cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _canceled = resend
.broadcasts
.cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b")
.await?;
Ok(())
}
Resend resend = new Resend("re_xxxxxxxxx");
CancelBroadcastResponseSuccess data = resend.broadcasts().cancel("559ac32e-9ef5-46fb-82a1-b76b840c0f7b");
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
await resend.BroadcastCancelAsync( new Guid( "559ac32e-9ef5-46fb-82a1-b76b840c0f7b" ) );
curl -X POST 'https://api.resend.com/broadcasts/559ac32e-9ef5-46fb-82a1-b76b840c0f7b/cancel' \
-H 'Authorization: Bearer re_xxxxxxxxx' \
-H 'Content-Type: application/json'
resend broadcasts cancel 559ac32e-9ef5-46fb-82a1-b76b840c0f7b
{
"object": "broadcast",
"id": "559ac32e-9ef5-46fb-82a1-b76b840c0f7b"
}
Was this page helpful?
⌘I