--- title: deliveryCustomizationDelete - GraphQL Admin description: Creates a delivery customization. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/deliverycustomizationdelete md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/deliverycustomizationdelete.md --- # delivery​Customization​Delete mutation Requires `write_delivery_customizations` access scope. Creates a delivery customization. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The global ID of the delivery customization. *** ## Delivery​Customization​Delete​Payload returns * deleted​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) Returns the deleted delivery customization ID. * user​Errors [\[Delivery​Customization​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/DeliveryCustomizationError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### deliveryCustomizationDelete reference ## Mutation Reference ```graphql mutation deliveryCustomizationDelete($id: ID!) { deliveryCustomizationDelete(id: $id) { deletedId userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100" } ```