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.
- Ruby
result = gateway.address.delete("the_customer_id", "the_address_id")
result.success?
# true
If the address or customer can't be found, it will raise a Braintree::NotFoundError
.
Arguments
address_id
required, StringThe two-letter value for an address associated with a specific customer ID. The maximum number of addresses per customer is 50.
customer_id
required, StringA 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.