import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.contactProperties.get(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->contactProperties->get('b6d24b8e-af0b-4c3c-be0c-359bbd97381');
import resend
resend.api_key = 're_xxxxxxxxx'
contact_property = resend.ContactProperties.get('b6d24b8e-af0b-4c3c-be0c-359bbd97381e')
require "resend"
Resend.api_key = "re_xxxxxxxxx"
property = Resend::ContactProperties.get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
package main
import (
"context"
"fmt"
"github.com/resend/resend-go/v3"
)
func main() {
ctx := context.TODO()
client := resend.NewClient("re_xxxxxxxxx")
property, err := client.ContactProperties.GetWithContext(ctx, "b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
if err != nil {
panic(err)
}
fmt.Println(property)
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _property = resend
.contacts
.get_property("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
resend.contactProperties().get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.ContactPropRetrieveAsync( new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ) );
Console.WriteLine( "Prop Id={0}", resp.Content.Id );
curl -X GET 'https://api.resend.com/contact-properties/b6d24b8e-af0b-4c3c-be0c-359bbd97381e' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend contact-properties get b6d24b8e-af0b-4c3c-be0c-359bbd97381e
{
"object": "contact_property",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"key": "company_name",
"type": "string",
"fallback_value": "Acme Corp",
"created_at": "2026-04-08 00:11:13.110779+00"
}
Retrieve Contact Property
Retrieve a contact property by its ID.
GET
/
contact-properties
/
:contact_property_id
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.contactProperties.get(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->contactProperties->get('b6d24b8e-af0b-4c3c-be0c-359bbd97381');
import resend
resend.api_key = 're_xxxxxxxxx'
contact_property = resend.ContactProperties.get('b6d24b8e-af0b-4c3c-be0c-359bbd97381e')
require "resend"
Resend.api_key = "re_xxxxxxxxx"
property = Resend::ContactProperties.get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
package main
import (
"context"
"fmt"
"github.com/resend/resend-go/v3"
)
func main() {
ctx := context.TODO()
client := resend.NewClient("re_xxxxxxxxx")
property, err := client.ContactProperties.GetWithContext(ctx, "b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
if err != nil {
panic(err)
}
fmt.Println(property)
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _property = resend
.contacts
.get_property("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
resend.contactProperties().get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.ContactPropRetrieveAsync( new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ) );
Console.WriteLine( "Prop Id={0}", resp.Content.Id );
curl -X GET 'https://api.resend.com/contact-properties/b6d24b8e-af0b-4c3c-be0c-359bbd97381e' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend contact-properties get b6d24b8e-af0b-4c3c-be0c-359bbd97381e
{
"object": "contact_property",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"key": "company_name",
"type": "string",
"fallback_value": "Acme Corp",
"created_at": "2026-04-08 00:11:13.110779+00"
}
Path Parameters
import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.contactProperties.get(
'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
);
$resend = Resend::client('re_xxxxxxxxx');
$resend->contactProperties->get('b6d24b8e-af0b-4c3c-be0c-359bbd97381');
import resend
resend.api_key = 're_xxxxxxxxx'
contact_property = resend.ContactProperties.get('b6d24b8e-af0b-4c3c-be0c-359bbd97381e')
require "resend"
Resend.api_key = "re_xxxxxxxxx"
property = Resend::ContactProperties.get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
package main
import (
"context"
"fmt"
"github.com/resend/resend-go/v3"
)
func main() {
ctx := context.TODO()
client := resend.NewClient("re_xxxxxxxxx")
property, err := client.ContactProperties.GetWithContext(ctx, "b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
if err != nil {
panic(err)
}
fmt.Println(property)
}
use resend_rs::{Resend, Result};
#[tokio::main]
async fn main() -> Result<()> {
let resend = Resend::new("re_xxxxxxxxx");
let _property = resend
.contacts
.get_property("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
.await?;
Ok(())
}
import com.resend.*;
public class Main {
public static void main(String[] args) {
Resend resend = new Resend("re_xxxxxxxxx");
resend.contactProperties().get("b6d24b8e-af0b-4c3c-be0c-359bbd97381e");
}
}
using Resend;
IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI
var resp = await resend.ContactPropRetrieveAsync( new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ) );
Console.WriteLine( "Prop Id={0}", resp.Content.Id );
curl -X GET 'https://api.resend.com/contact-properties/b6d24b8e-af0b-4c3c-be0c-359bbd97381e' \
-H 'Authorization: Bearer re_xxxxxxxxx'
resend contact-properties get b6d24b8e-af0b-4c3c-be0c-359bbd97381e
{
"object": "contact_property",
"id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
"key": "company_name",
"type": "string",
"fallback_value": "Acme Corp",
"created_at": "2026-04-08 00:11:13.110779+00"
}
Was this page helpful?
⌘I