--- title: customerAddressDelete - Customer API description: Deletes a specific address for a customer. api_version: 2025-10 api_name: customer type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/customer/latest/mutations/customeraddressdelete md: https://shopify.dev/docs/api/customer/latest/mutations/customeraddressdelete.md --- # customer​Address​Delete mutation Deletes a specific address for a customer. ## Arguments * address​Id [ID!](https://shopify.dev/docs/api/customer/latest/scalars/ID) required The ID of the address to be deleted. *** ## Customer​Address​Delete​Payload returns * deleted​Address​Id [ID](https://shopify.dev/docs/api/customer/latest/scalars/ID) The ID of the deleted address. * user​Errors [\[User​Errors​Customer​Address​User​Errors!\]!](https://shopify.dev/docs/api/customer/latest/objects/UserErrorsCustomerAddressUserErrors) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### customerAddressDelete reference ## Mutation Reference ```graphql mutation customerAddressDelete($addressId: ID!) { customerAddressDelete(addressId: $addressId) { deletedAddressId userErrors { field message } } } ``` ## Input ```json { "addressId": "gid://shopify//10079785100" } ```