Contacts
List Contacts
Contacts
List Contacts
Show all contacts from an audience.
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.contacts.list({
audienceId: '78261eea-8f8b-4381-83c6-79fa7120f1cf',
});
{
"object": "list",
"data": [
{
"id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
"email": "steve.wozniak@gmail.com",
"first_name": "Steve",
"last_name": "Wozniak",
"created_at": "2023-10-06T23:47:56.678Z",
"unsubscribed": false
}
]
}
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.contacts.list({
audienceId: '78261eea-8f8b-4381-83c6-79fa7120f1cf',
});
{
"object": "list",
"data": [
{
"id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
"email": "steve.wozniak@gmail.com",
"first_name": "Steve",
"last_name": "Wozniak",
"created_at": "2023-10-06T23:47:56.678Z",
"unsubscribed": false
}
]
}
Was this page helpful?
import { Resend } from 'resend';
const resend = new Resend('re_123456789');
resend.contacts.list({
audienceId: '78261eea-8f8b-4381-83c6-79fa7120f1cf',
});
{
"object": "list",
"data": [
{
"id": "e169aa45-1ecf-4183-9955-b1499d5701d3",
"email": "steve.wozniak@gmail.com",
"first_name": "Steve",
"last_name": "Wozniak",
"created_at": "2023-10-06T23:47:56.678Z",
"unsubscribed": false
}
]
}