Skip to content

Delete Customer Address

Delete a customer address.

Authentication

This query requires a valid customer authentication token in the Authorization header. Use the Customer Login API to retrieve the token.

Authorization: Bearer <accessToken>

Arguments

NameTypeRequiredDescription
addressIdString✅ YesAddress ID to delete

Response

FieldTypeDescription
createDeleteCustomerAddressStringReturn deleted customer address object

Important Notes

  • Address must belong to the authenticated customer
  • Default address cannot be deleted without setting a new default
  • Addresses used in incomplete orders may be archived instead of deleted

Error Responses

json
{
  "errors": {
    "message": "Address not found or does not belong to this customer",
  }
}

Released under the MIT License.