--- title: marketLocalizationsRegister - GraphQL Admin description: Creates or updates market localizations. api_version: 2025-10 api_name: admin type: mutation api_type: graphql source_url: html: https://shopify.dev/docs/api/admin-graphql/latest/mutations/marketLocalizationsRegister md: https://shopify.dev/docs/api/admin-graphql/latest/mutations/marketLocalizationsRegister.md --- # market​Localizations​Register mutation Requires `write_translations` access scope. Creates or updates market localizations. ## Arguments * market​Localizations [\[Market​Localization​Register​Input!\]!](https://shopify.dev/docs/api/admin-graphql/latest/input-objects/MarketLocalizationRegisterInput) required The input fields for a market localization. * resource​Id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) required The ID of the resource that is being localized within the context of a market. *** ## Market​Localizations​Register​Payload returns * market​Localizations [\[Market​Localization!\]](https://shopify.dev/docs/api/admin-graphql/latest/objects/MarketLocalization) The market localizations that were created or updated. * user​Errors [\[Translation​User​Error!\]!](https://shopify.dev/docs/api/admin-graphql/latest/objects/TranslationUserError) non-null The list of errors that occurred from executing the mutation. *** ## Examples * ### marketLocalizationsRegister reference ## Mutation Reference ```graphql mutation marketLocalizationsRegister($resourceId: ID!, $marketLocalizations: [MarketLocalizationRegisterInput!]!) { marketLocalizationsRegister(resourceId: $resourceId, marketLocalizations: $marketLocalizations) { marketLocalizations { # MarketLocalization fields } userErrors { field message } } } ``` ## Input ```json { "resourceId": "gid://shopify//10079785100", "marketLocalizations": [ { "marketId": "gid://shopify//10079785100", "key": "", "value": "", "marketLocalizableContentDigest": "" } ] } ``` ##### Variables ``` { "resourceId": "gid://shopify//10079785100", "marketLocalizations": [ { "marketId": "gid://shopify//10079785100", "key": "", "value": "", "marketLocalizableContentDigest": "" } ] } ``` ##### Schema ``` input MarketLocalizationRegisterInput { marketId: ID! key: String! value: String! marketLocalizableContentDigest: String! } ```