--- title: domainVerificationTagRemove - GraphQL Admin description: >- Removes a Meta tag from the online store for a given shop. The tag is used for verifying merchant domains during marketplace onboarding. api_version: unstable api_name: admin source_url: html: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/domainVerificationTagRemove md: >- https://shopify.dev/docs/api/admin-graphql/unstable/mutations/domainVerificationTagRemove.md --- # domain​Verification​Tag​Remove mutation Removes a Meta tag from the online store for a given shop. The tag is used for verifying merchant domains during marketplace onboarding. ## Arguments * name [String!](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) required The name of the Meta tag, as it appears on the online store. *** ## Domain​Verification​Tag​Remove​Payload returns * user​Errors [\[Domain​Verification​Tag​Remove​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/unstable/objects/DomainVerificationTagRemoveUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### domainVerificationTagRemove reference ## Mutation Reference ```graphql mutation domainVerificationTagRemove($name: String!) { domainVerificationTagRemove(name: $name) { userErrors { field message } } } ``` ## Input ##### Variables ```json { "name": "" } ```