--- title: paymentCustomizationDelete - GraphQL Admin description: Deletes a payment 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/paymentcustomizationdelete md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/paymentcustomizationdelete.md --- # payment​Customization​Delete mutation Requires `write_payment_customizations` access scope. Deletes a payment customization. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The global ID of the payment customization. *** ## Payment​Customization​Delete​Payload returns * deleted​Id [ID](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) Returns the deleted payment customization ID. * user​Errors [\[Payment​Customization​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/PaymentCustomizationError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### paymentCustomizationDelete reference ## Mutation Reference ```graphql mutation paymentCustomizationDelete($id: ID!) { paymentCustomizationDelete(id: $id) { deletedId userErrors { field message } } } ``` ## Input ```json { "id": "gid://shopify//10079785100" } ``` ##### Variables ``` { "id": "gid://shopify//10079785100" } ```