Skip to main content
PUT
/
v1
/
customers
/
{id}
Update customer
curl --request PUT \
  --url https://api.example.com/v1/customers/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "first_name": "<string>",
  "last_name": "<string>",
  "email": "[email protected]",
  "phone": "<string>",
  "address": {
    "street": "<string>",
    "city": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "metadata": {}
}
'
{}

Path Parameters

id
string<uuid>
required

Body

application/json
first_name
string
last_name
string
email
string<email>
phone
string
address
object
metadata
object

Response

200

Customer updated successfully