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