Skip to main content
PATCH
Update an address

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Path Parameters

id
string<uuid>
required
addr_id
string<uuid>
required

Body

application/json

Address payload accepted by both standalone address endpoints and the atomic-create path in POST /v1/accounts. Canonical field names are preferred; Stripe-style aliases are accepted everywhere for backward compatibility.

Field aliases (all paths, all operations):

  • street1 accepted as alias for line1 (Stripe-style)
  • street2 accepted as alias for line2
  • region accepted as alias for state
  • postal_code accepted as alias for zip (Stripe-style)
  • address_type accepted as alias for type (migration layer)

FIX 2026-05-15 (NEW-GAP-API-V1-ADDRESS-AND-CONTACT-FIELD-MAPPING-INCONSISTENT): Aliases now work in standalone POST/PATCH endpoints (previously only worked in atomic-create).

type
enum<string>

Address type. Also accepted as address_type (alias).

Available options:
shipping,
billing
address_type
enum<string>

Alias for type. Preferred in migration contexts.

Available options:
shipping,
billing
label
string | null
name
string | null
line1
string

Street line 1. Also accepted as street1 (Stripe-style alias).

street1
string | null

Alias for line1.

line2
string | null
street2
string | null

Alias for line2.

city
string
state
string

State or province (2-letter code for US). Also accepted as region.

region
string | null

Alias for state.

zip
string

Postal/ZIP code. Also accepted as postal_code (Stripe-style alias).

postal_code
string | null

Alias for zip.

country
string
default:US
is_commercial
boolean
is_default
boolean
is_default_shipping
boolean
is_default_billing
boolean
is_pickup
boolean

Response

Updated address

data
object

A shipping or billing address for an account.