import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.list();
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->list();
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.list()
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.list
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.List()
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automations = resend.automations.list(ListOptions::default()).await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
ListAutomationsResponseSuccess data = resend.automations().list();
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationListAsync();
Console.WriteLine( "Count={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/automations' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations list
{
"object": "list",
"has_more": false,
"data": [
{
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "enabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00"
},
{
"id": "662892b2-4270-4130-a186-33a19752319d",
"name": "Re-engagement",
"status": "disabled",
"created_at": "2026-09-15 08:30:00.000000+00",
"updated_at": "2026-09-20 14:00:00.000000+00"
}
]
}
List Automations
Retrieve a list of automations.
GET
/
automations
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.list();
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->list();
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.list()
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.list
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.List()
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automations = resend.automations.list(ListOptions::default()).await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
ListAutomationsResponseSuccess data = resend.automations().list();
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationListAsync();
Console.WriteLine( "Count={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/automations' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations list
{
"object": "list",
"has_more": false,
"data": [
{
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "enabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00"
},
{
"id": "662892b2-4270-4130-a186-33a19752319d",
"name": "Re-engagement",
"status": "disabled",
"created_at": "2026-09-15 08:30:00.000000+00",
"updated_at": "2026-09-20 14:00:00.000000+00"
}
]
}
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.list();
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->list();
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.list()
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.list
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.List()
}
use resend_rs::{list_opts::ListOptions, Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automations = resend.automations.list(ListOptions::default()).await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
ListAutomationsResponseSuccess data = resend.automations().list();
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationListAsync();
Console.WriteLine( "Count={0}", resp.Content.Data.Count );
curl -X GET 'https://api.resend.com/automations' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations list
{
"object": "list",
"has_more": false,
"data": [
{
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "enabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00"
},
{
"id": "662892b2-4270-4130-a186-33a19752319d",
"name": "Re-engagement",
"status": "disabled",
"created_at": "2026-09-15 08:30:00.000000+00",
"updated_at": "2026-09-20 14:00:00.000000+00"
}
]
}
Was this page helpful?
⌘I