Skip to main content
PATCH
/
contact-properties
/
:contact_property_id
import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.contactProperties.update({
  id: 'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
  fallbackValue: 'Example Company',
});
$resend = Resend::client('re_xxxxxxxxx');

$resend->contactProperties->update('b6d24b8e-af0b-4c3c-be0c-359bbd97381', [
  'fallback_value' => 'Example Company',
]);
import resend

resend.api_key = 're_xxxxxxxxx'

params = {
    "id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
    "fallback_value": "Example Company",
}

contact_property = resend.ContactProperties.update(params)
require "resend"

Resend.api_key = "re_xxxxxxxxx"

property = Resend::ContactProperties.update({
  id: "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
  fallback_value: "Example Company"
})
package main

import (
	"context"
	"fmt"

	"github.com/resend/resend-go/v3"
)

func main() {
	ctx := context.TODO()
	client := resend.NewClient("re_xxxxxxxxx")

	params := &resend.UpdateContactPropertyRequest{
		Id:            "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
		FallbackValue: "Example Company",
	}

	property, err := client.ContactProperties.UpdateWithContext(ctx, params)
	if err != nil {
		panic(err)
	}
	fmt.Println(property)
}
use resend_rs::{types::ContactPropertyChanges, Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let update = ContactPropertyChanges::default().with_fallback("Example Company");
  let _contact_property = resend
    .contacts
    .update_property("b6d24b8e-af0b-4c3c-be0c-359bbd97381e", update)
    .await?;

  Ok(())
}
import com.resend.*;

public class Main {
  public static void main(String[] args) {
    Resend resend = new Resend("re_xxxxxxxxx");

    UpdateContactPropertyOptions options = UpdateContactPropertyOptions.builder()
      .id("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
      .fallbackValue("Example Company")
      .build();

    resend.contactProperties().update(options);
  }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.ContactPropUpdateAsync(
  new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ),
  new ContactPropertyUpdateData() {
    DefaultValue = "Example Company",
  }
);
curl -X PATCH 'https://api.resend.com/contact-properties/b6d24b8e-af0b-4c3c-be0c-359bbd97381e' \
     -H 'Authorization: Bearer re_xxxxxxxxx' \
     -H 'Content-Type: application/json' \
     -d $'{
  "fallback_value": "Example Company"
}'
resend contact-properties update b6d24b8e-af0b-4c3c-be0c-359bbd97381e \
  --fallback-value "Example Company"
{
  "object": "contact_property",
  "id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}

Path Parameters

The key and type fields cannot be changed after creation. This preserves data integrity for existing contact values.

Body Parameters

import { Resend } from 'resend';

const resend = new Resend('re_xxxxxxxxx');

const { data, error } = await resend.contactProperties.update({
  id: 'b6d24b8e-af0b-4c3c-be0c-359bbd97381e',
  fallbackValue: 'Example Company',
});
$resend = Resend::client('re_xxxxxxxxx');

$resend->contactProperties->update('b6d24b8e-af0b-4c3c-be0c-359bbd97381', [
  'fallback_value' => 'Example Company',
]);
import resend

resend.api_key = 're_xxxxxxxxx'

params = {
    "id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
    "fallback_value": "Example Company",
}

contact_property = resend.ContactProperties.update(params)
require "resend"

Resend.api_key = "re_xxxxxxxxx"

property = Resend::ContactProperties.update({
  id: "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
  fallback_value: "Example Company"
})
package main

import (
	"context"
	"fmt"

	"github.com/resend/resend-go/v3"
)

func main() {
	ctx := context.TODO()
	client := resend.NewClient("re_xxxxxxxxx")

	params := &resend.UpdateContactPropertyRequest{
		Id:            "b6d24b8e-af0b-4c3c-be0c-359bbd97381e",
		FallbackValue: "Example Company",
	}

	property, err := client.ContactProperties.UpdateWithContext(ctx, params)
	if err != nil {
		panic(err)
	}
	fmt.Println(property)
}
use resend_rs::{types::ContactPropertyChanges, Resend, Result};

#[tokio::main]
async fn main() -> Result<()> {
  let resend = Resend::new("re_xxxxxxxxx");

  let update = ContactPropertyChanges::default().with_fallback("Example Company");
  let _contact_property = resend
    .contacts
    .update_property("b6d24b8e-af0b-4c3c-be0c-359bbd97381e", update)
    .await?;

  Ok(())
}
import com.resend.*;

public class Main {
  public static void main(String[] args) {
    Resend resend = new Resend("re_xxxxxxxxx");

    UpdateContactPropertyOptions options = UpdateContactPropertyOptions.builder()
      .id("b6d24b8e-af0b-4c3c-be0c-359bbd97381e")
      .fallbackValue("Example Company")
      .build();

    resend.contactProperties().update(options);
  }
}
using Resend;

IResend resend = ResendClient.Create( "re_xxxxxxxxx" ); // Or from DI

var resp = await resend.ContactPropUpdateAsync(
  new Guid( "b6d24b8e-af0b-4c3c-be0c-359bbd97381e" ),
  new ContactPropertyUpdateData() {
    DefaultValue = "Example Company",
  }
);
curl -X PATCH 'https://api.resend.com/contact-properties/b6d24b8e-af0b-4c3c-be0c-359bbd97381e' \
     -H 'Authorization: Bearer re_xxxxxxxxx' \
     -H 'Content-Type: application/json' \
     -d $'{
  "fallback_value": "Example Company"
}'
resend contact-properties update b6d24b8e-af0b-4c3c-be0c-359bbd97381e \
  --fallback-value "Example Company"
{
  "object": "contact_property",
  "id": "b6d24b8e-af0b-4c3c-be0c-359bbd97381e"
}