Address

Address: Delete

Addresses are uniquely identified by a customer id and an address id, so you need both of these fields to delete an address.

  1. Node
gateway.address.delete("theCustomerId", "theAddressId", (err) => {
});
note

When an address is deleted from a customer, it is also removed from any Vault payment methods that reference the address for billing or shipping.

If the address or customer can't be found, it will return a notFoundError.

Arguments
addressIdrequired, String
The two-letter value for an address associated with a specific customer ID. The maximum number of addresses per customer is 50.
customerIdrequired, String
A string value representing an existing customer in your Vault.

When true, the address will not be deleted if it is the billing address for a payment instrument.

Additional Parameters
The phone number that belongs to the address. Phone number must be 10-14 characters and can only contain numbers, hyphens and parentheses.