Add Customer Address
curl --request POST \
  --url https://api.revolv3.com/api/Customers/{customerId}/address \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "addressType": "Billing",
  "addressLine1": "100 Main Street",
  "addressLine2": null,
  "city": "Santa Ana",
  "state": "CA",
  "postalCode": "90000",
  "phoneNumber": null,
  "email": null,
  "country": "US"
}'
{
  "customerId": 1,
  "merchantCustomerRefId": "1234-5678-9101",
  "firstName": "John",
  "lastName": "Doe",
  "billingAddresses": [
    {
      "addressId": 0,
      "addressLine1": "100 Main Street",
      "addressLine2": null,
      "city": "Santa Ana",
      "state": "CA",
      "postalCode": "90000",
      "phoneNumber": null,
      "email": null,
      "country": "US"
    }
  ],
  "shippingAddresses": [],
  "taxAddresses": [],
  "subscriptions": []
}

Path Parameters

customerId
integer
required

Body

Response

Created

The response is of type object.