import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.get(
'c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->get('c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.Get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automation = resend
.automations
.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
Automation data = resend.automations().get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationRetrieveAsync( new Guid( "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd" ) );
Console.WriteLine( "Name={0}", resp.Content.Name );
curl -X GET 'https://api.resend.com/automations/c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations get c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd
{
"object": "automation",
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "disabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00",
"steps": [
{
"key": "start",
"type": "trigger",
"config": { "event_name": "user.created" }
},
{
"key": "welcome",
"type": "send_email",
"config": {
"template": { "id": "34a080c9-b17d-4187-ad80-5af20266e535" }
}
}
],
"connections": [
{
"from": "start",
"to": "welcome",
"type": "default"
}
]
}
Retrieve Automation
Retrieve a single automation.
GET
/
automations
/
:automation_id
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.get(
'c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->get('c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.Get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automation = resend
.automations
.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
Automation data = resend.automations().get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationRetrieveAsync( new Guid( "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd" ) );
Console.WriteLine( "Name={0}", resp.Content.Name );
curl -X GET 'https://api.resend.com/automations/c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations get c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd
{
"object": "automation",
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "disabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00",
"steps": [
{
"key": "start",
"type": "trigger",
"config": { "event_name": "user.created" }
},
{
"key": "welcome",
"type": "send_email",
"config": {
"template": { "id": "34a080c9-b17d-4187-ad80-5af20266e535" }
}
}
],
"connections": [
{
"from": "start",
"to": "welcome",
"type": "default"
}
]
}
Path Parameters
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.automations.get(
'c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->automations->get('c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd');
import resend
resend.api_key = "re_xxxxxxxxx"
resend.Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
require "resend"
Resend.api_key = "re_xxxxxxxxx"
Resend::Automations.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
package main
import "github.com/resend/resend-go/v3"
func main() {
client := resend.NewClient("re_xxxxxxxxx")
client.Automations.Get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _automation = resend
.automations
.get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
Automation data = resend.automations().get("c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" );
var resp = await resend.AutomationRetrieveAsync( new Guid( "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd" ) );
Console.WriteLine( "Name={0}", resp.Content.Name );
curl -X GET 'https://api.resend.com/automations/c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend automations get c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd
{
"object": "automation",
"id": "c9b16d4f-ba6c-4e2e-b044-6bf4404e57fd",
"name": "Welcome series",
"status": "disabled",
"created_at": "2026-10-01 12:00:00.000000+00",
"updated_at": "2026-10-01 12:00:00.000000+00",
"steps": [
{
"key": "start",
"type": "trigger",
"config": { "event_name": "user.created" }
},
{
"key": "welcome",
"type": "send_email",
"config": {
"template": { "id": "34a080c9-b17d-4187-ad80-5af20266e535" }
}
}
],
"connections": [
{
"from": "start",
"to": "welcome",
"type": "default"
}
]
}
Was this page helpful?
⌘I