--- title: deliveryCustomizationUpdate - GraphQL Admin description: Updates a delivery customization. api_version: 2024-10 api_name: admin type: mutation api_type: graphql source_url: html: >- https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/deliveryCustomizationUpdate md: >- https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/deliveryCustomizationUpdate.txt --- # delivery​Customization​Update mutation Requires `write_delivery_customizations` access scope. Updates a delivery customization. ## Arguments * delivery​Customization [Delivery​Customization​Input!](https://shopify.dev/docs/api/admin-graphql/2024-10/input-objects/DeliveryCustomizationInput) required The input data used to update the delivery customization. * id [ID!](https://shopify.dev/docs/api/admin-graphql/2024-10/scalars/ID) required The global ID of the delivery customization. *** ## Delivery​Customization​Update​Payload returns * delivery​Customization [Delivery​Customization](https://shopify.dev/docs/api/admin-graphql/2024-10/objects/DeliveryCustomization) Returns the updated delivery customization. * user​Errors [\[Delivery​Customization​Error!\]!](https://shopify.dev/docs/api/admin-graphql/2024-10/objects/DeliveryCustomizationError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### deliveryCustomizationUpdate reference ## Mutation Reference ```graphql mutation deliveryCustomizationUpdate($id: ID!, $deliveryCustomization: DeliveryCustomizationInput!) { deliveryCustomizationUpdate(id: $id, deliveryCustomization: $deliveryCustomization) { deliveryCustomization { # DeliveryCustomization fields } userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100", "deliveryCustomization": { "functionId": "", "title": "", "enabled": true, "metafields": [ { "id": "gid://shopify//10079785100", "namespace": "", "key": "", "value": "", "type": "" } ] } } ```