Update Address
curl --request PATCH \
  --url https://api.revolv3.com/api/Customers/{customerId}/address/{addressId} \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "addressLine1": "101 Update Street",
  "addressLine2": null,
  "city": "Irvine",
  "state": null,
  "postalCode": "92602",
  "phoneNumber": null,
  "email": null,
  "country": null
}'
{
  "customerId": 1,
  "merchantCustomerRefId": "1234-5678-9101",
  "firstName": "John",
  "lastName": "Doe",
  "billingAddresses": [
    {
      "addressId": 1,
      "addressLine1": "101 Update Street",
      "addressLine2": "",
      "city": "Irvine",
      "state": "CA",
      "postalCode": "92602",
      "phoneNumber": null,
      "email": null,
      "country": "US"
    }
  ],
  "shippingAddresses": [],
  "taxAddresses": [],
  "subscriptions": []
}

Path Parameters

customerId
integer
required
addressId
integer
required

Body

Response

OK

The response is of type object.