Skip to main content
PUT
/
api
/
v1
/
customers
/
{customer_id}
Update Customer
curl --request PUT \
  --url https://api.example.com/api/v1/customers/{customer_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "external_id": "<string>",
  "billing_address_country": "<string>",
  "billing_address_state": "<string>",
  "billing_address_city": "<string>",
  "billing_address_line1": "<string>",
  "billing_address_postal_code": "<string>"
}
'
customer_id
string
required
UUID of the customer
name
string
Updated name
email
string
Updated email
external_id
string
Updated external ID
billing_address_country
string
Country code
billing_address_state
string
State/Province
billing_address_city
string
City
billing_address_line1
string
Street address
billing_address_postal_code
string
Postal code