--- title: checkoutAndAccountsAppConfigurationDelete - GraphQL Admin description: Delete a checkout and accounts app configuration. api_version: unstable api_name: admin source_url: html: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/checkoutAndAccountsAppConfigurationDelete md: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/checkoutAndAccountsAppConfigurationDelete.md --- # checkout​And​Accounts​App​Configuration​Delete mutation Requires `write_checkout_and_apps_configs` access scope. Delete a checkout and accounts app configuration. ## Arguments * id [ID!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) required The ID of the checkout and accounts app configuration to delete. *** ## Checkout​And​Accounts​App​Configuration​Delete​Payload returns * deleted​Checkout​And​Accounts​App​Configuration​Id [ID](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/ID) The ID of the deleted checkout and accounts app configuration. * user​Errors [\[Checkout​And​Accounts​App​Configuration​Delete​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/unstable/objects/CheckoutAndAccountsAppConfigurationDeleteUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### checkoutAndAccountsAppConfigurationDelete reference ## Mutation Reference ```graphql mutation checkoutAndAccountsAppConfigurationDelete($id: ID!) { checkoutAndAccountsAppConfigurationDelete(id: $id) { deletedCheckoutAndAccountsAppConfigurationId userErrors { field message } } } ``` ## Input ##### Variables ```json { "id": "gid://shopify//10079785100" } ```