Stay organized with collections
Save and categorize content based on your preferences.
Merchant API code sample to delete a local inventory.
Java
// Copyright 2023 Google LLC//// Licensed under the Apache License, Version 2.0 (the "License");// you may not use this file except in compliance with the License.// You may obtain a copy of the License at//// https://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.packageshopping.merchant.samples.inventories.v1;importcom.google.api.gax.core.FixedCredentialsProvider;importcom.google.auth.oauth2.GoogleCredentials;importcom.google.shopping.merchant.inventories.v1.DeleteLocalInventoryRequest;importcom.google.shopping.merchant.inventories.v1.LocalInventoryName;importcom.google.shopping.merchant.inventories.v1.LocalInventoryServiceClient;importcom.google.shopping.merchant.inventories.v1.LocalInventoryServiceSettings;importshopping.merchant.samples.utils.Authenticator;importshopping.merchant.samples.utils.Config;/** This class demonstrates how to delete a Local inventory for a given product */publicclassDeleteLocalInventorySample{publicstaticvoiddeleteLocalInventory(Configconfig,StringproductId,StringstoreCode)throwsException{GoogleCredentialscredential=newAuthenticator().authenticate();LocalInventoryServiceSettingslocalInventoryServiceSettings=LocalInventoryServiceSettings.newBuilder().setCredentialsProvider(FixedCredentialsProvider.create(credential)).build();Stringname=LocalInventoryName.newBuilder().setAccount(config.getAccountId().toString()).setProduct(productId).setStoreCode(storeCode).build().toString();try(LocalInventoryServiceClientlocalInventoryServiceClient=LocalInventoryServiceClient.create(localInventoryServiceSettings)){DeleteLocalInventoryRequestrequest=DeleteLocalInventoryRequest.newBuilder().setName(name).build();System.out.println("Sending deleteLocalInventory request");localInventoryServiceClient.deleteLocalInventory(request);// no response returned on successSystem.out.println("Delete successful, note that it may take up to 30 minutes for the delete to update in"+" the system.");}catch(Exceptione){System.out.println(e);}}publicstaticvoidmain(String[]args)throwsException{Configconfig=Config.load();// An ID assigned to a product by Google. In the format// channel:contentLanguage:feedLabel:offerIdStringproductId="local:en:label:1111111111";// The ID uniquely identifying each region.StringstoreCode="EXAMPLE";deleteLocalInventory(config,productId,storeCode);}}
<?php/** * Copyright 2023 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */require_once __DIR__ . '/../../../vendor/autoload.php';require_once __DIR__ . '/../../Authentication/Authentication.php';use Google\ApiCore\ApiException;use Google\Shopping\Merchant\Inventories\V1\Client\LocalInventoryServiceClient;use Google\Shopping\Merchant\Inventories\V1\DeleteLocalInventoryRequest;/** * Deletes the specified `LocalInventory` resource from the given product * in your merchant account. It might take up to an hour for the * `LocalInventory` to be deleted from the specific product. * Once you have received a successful delete response, wait for that * period before attempting a delete again. */class DeleteLocalInventory{ // ENSURE you fill in the merchant account, product, and region ID for the // sample to work. private const ACCOUNT = 'INSERT_ACCOUNT_ID_HERE'; private const PRODUCT = 'INSERT_PRODUCT_ID_HERE'; private const STORE_CODE = 'INSERT_STORE_CODE_HERE'; /** * Deletes a specific local inventory of a given product. * * @param string $formattedName The name of the `LocalInventory` resource * to delete. * Format: `accounts/{account}/products/{product}/localInventories/{store_code}` * Please see {@see LocalInventoryServiceClient::localInventoryName()} * for help formatting this field. */ function deleteLocalInventorySample(string $formattedName): void { // Gets the OAuth credentials to make the request. $credentials = Authentication::useServiceAccountOrTokenFile(); // Creates options config containing credentials for the client to use. $options = ['credentials' => $credentials]; // Creates a client. $localInventoryServiceClient = new LocalInventoryServiceClient($options); // Prepare the request message. $request = (new DeleteLocalInventoryRequest()) ->setName($formattedName); // Calls the API and catches and prints any network failures/errors. try { $localInventoryServiceClient->deleteLocalInventory($request); print 'Delete call completed successfully.' . PHP_EOL; } catch (ApiException $ex) { printf('Call failed with message: %s%s', $ex->getMessage(), PHP_EOL); } } /** * Helper to execute the sample. */ function callSample(): void { // These variables are defined at the top of the file. $formattedName = LocalInventoryServiceClient::localInventoryName( $this::ACCOUNT, $this::PRODUCT, $this::STORE_CODE ); // Deletes the specific local inventory of the parent product. $this->deleteLocalInventorySample($formattedName); }}$sample = new DeleteLocalInventory();$sample->callSample();
# -*- coding: utf-8 -*-# Copyright 2024 Google LLC## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License."""A module to delete a Local Inventory."""fromexamples.authenticationimportconfigurationfromexamples.authenticationimportgenerate_user_credentialsfromgoogle.shoppingimportmerchant_inventories_v1# ENSURE you fill in the product ID and store code# for the sample to work._ACCOUNT=configuration.Configuration().read_merchant_info()_PRODUCT="[INSERT_PRODUCT_HERE]"_STORE_CODE="[INSERT_STORE_CODE_HERE]"_NAME=(f"accounts/{_ACCOUNT}/products/{_PRODUCT}/localInventories/"f"{_STORE_CODE}")defdelete_local_inventory():"""Deletes the specified `LocalInventory` resource from the given product. It might take up to an hour for the `LocalInventory` to be deleted from the specific product. Once you have received a successful delete response, wait for that period before attempting a delete again. """# Gets OAuth Credentials.credentials=generate_user_credentials.main()# Creates a client.client=merchant_inventories_v1.LocalInventoryServiceClient(credentials=credentials)# Creates the request.request=merchant_inventories_v1.DeleteLocalInventoryRequest(name=_NAME)# Makes the request and catch and print any error messages.try:client.delete_local_inventory(request=request)print("Delete successful")exceptRuntimeErrorase:print("Delete failed")print(e)if__name__=="__main__":delete_local_inventory()
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-13 UTC."],[[["\u003cp\u003eThis page provides code samples in Java, cURL, PHP, and Python demonstrating how to remove a local inventory for a product.\u003c/p\u003e\n"],["\u003cp\u003eThe samples cover the process of deleting a \u003ccode\u003eLocalInventory\u003c/code\u003e resource associated with a specific product in a merchant account.\u003c/p\u003e\n"],["\u003cp\u003eIt's important to note that after a successful deletion, it may take up to an hour for the changes to be fully reflected.\u003c/p\u003e\n"]]],["The code samples demonstrate how to delete a local inventory for a product using the Merchant API in Java, PHP, and Python. Key actions include authenticating via OAuth credentials, creating a `LocalInventoryServiceClient`, and constructing a `DeleteLocalInventoryRequest` with the product's formatted name, including the account, product ID, and store code. Finally the code sends the request to delete the inventory, and confirms a successful execution of the operation. It is also stated that it can take up to 30 minutes to update.\n"],null,["Merchant API code sample to delete local inventory \n\nJava \n\n // Copyright 2023 Google LLC\n //\n // Licensed under the Apache License, Version 2.0 (the \"License\");\n // you may not use this file except in compliance with the License.\n // You may obtain a copy of the License at\n //\n // https://www.apache.org/licenses/LICENSE-2.0\n //\n // Unless required by applicable law or agreed to in writing, software\n // distributed under the License is distributed on an \"AS IS\" BASIS,\n // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n // See the License for the specific language governing permissions and\n // limitations under the License.\n\n package shopping.merchant.samples.inventories.v1beta;\n import com.google.api.gax.core.FixedCredentialsProvider;\n import com.google.auth.oauth2.GoogleCredentials;\n import com.google.shopping.merchant.inventories.v1beta.DeleteLocalInventoryRequest;\n import com.google.shopping.merchant.inventories.v1beta.LocalInventoryName;\n import com.google.shopping.merchant.inventories.v1beta.LocalInventoryServiceClient;\n import com.google.shopping.merchant.inventories.v1beta.LocalInventoryServiceSettings;\n import shopping.merchant.samples.utils.Authenticator;\n import shopping.merchant.samples.utils.Config;\n\n /** This class demonstrates how to delete a Local inventory for a given product */\n public class DeleteLocalInventorySample {\n\n public static void deleteLocalInventory(Config config, String productId, String storeCode)\n throws Exception {\n GoogleCredentials credential = new Authenticator().authenticate();\n\n LocalInventoryServiceSettings localInventoryServiceSettings =\n LocalInventoryServiceSettings.newBuilder()\n .setCredentialsProvider(FixedCredentialsProvider.create(credential))\n .build();\n\n String name =\n LocalInventoryName.newBuilder()\n .setAccount(config.getAccountId().toString())\n .setProduct(productId)\n .setStoreCode(storeCode)\n .build()\n .toString();\n\n try (LocalInventoryServiceClient localInventoryServiceClient =\n LocalInventoryServiceClient.create(localInventoryServiceSettings)) {\n DeleteLocalInventoryRequest request =\n DeleteLocalInventoryRequest.newBuilder().setName(name).build();\n\n System.out.println(\"Sending deleteLocalInventory request\");\n localInventoryServiceClient.deleteLocalInventory(request); // no response returned on success\n System.out.println(\n \"Delete successful, note that it may take up to 30 minutes for the delete to update in\"\n + \" the system.\");\n } catch (Exception e) {\n System.out.println(e);\n }\n }\n\n public static void main(String[] args) throws Exception {\n Config config = Config.load();\n // An ID assigned to a product by Google. In the format\n // channel:contentLanguage:feedLabel:offerId\n String productId = \"local:en:label:1111111111\";\n // The ID uniquely identifying each region.\n String storeCode = \"EXAMPLE\";\n\n deleteLocalInventory(config, productId, storeCode);\n }\n } \n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/java/src/main/java/shopping/merchant/samples/inventories/v1beta/DeleteLocalInventorySample.java\n\nPHP \n\n \u003c?php\n\n /**\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n require_once __DIR__ . '/../../../vendor/autoload.php';\n require_once __DIR__ . '/../../Authentication/Authentication.php';\n use Google\\ApiCore\\ApiException;\n use Google\\Shopping\\Merchant\\Inventories\\V1beta\\Client\\LocalInventoryServiceClient;\n use Google\\Shopping\\Merchant\\Inventories\\V1beta\\DeleteLocalInventoryRequest;\n\n /**\n * Deletes the specified `LocalInventory` resource from the given product\n * in your merchant account. It might take up to an hour for the\n * `LocalInventory` to be deleted from the specific product.\n * Once you have received a successful delete response, wait for that\n * period before attempting a delete again.\n */\n\n class DeleteLocalInventory\n {\n\n // ENSURE you fill in the merchant account, product, and region ID for the\n // sample to work.\n private const ACCOUNT = 'INSERT_ACCOUNT_ID_HERE';\n private const PRODUCT = 'INSERT_PRODUCT_ID_HERE';\n private const STORE_CODE = 'INSERT_STORE_CODE_HERE';\n\n /**\n * Deletes a specific local inventory of a given product.\n *\n * @param string $formattedName The name of the `LocalInventory` resource\n * to delete.\n * Format: `accounts/{account}/products/{product}/localInventories/{store_code}`\n * Please see {@see LocalInventoryServiceClient::localInventoryName()}\n * for help formatting this field.\n */\n function deleteLocalInventorySample(string $formattedName): void\n {\n // Gets the OAuth credentials to make the request.\n $credentials = Authentication::useServiceAccountOrTokenFile();\n\n // Creates options config containing credentials for the client to use.\n $options = ['credentials' =\u003e $credentials];\n\n // Creates a client.\n $localInventoryServiceClient = new LocalInventoryServiceClient($options);\n\n // Prepare the request message.\n $request = (new DeleteLocalInventoryRequest())\n -\u003esetName($formattedName);\n\n // Calls the API and catches and prints any network failures/errors.\n try {\n $localInventoryServiceClient-\u003edeleteLocalInventory($request);\n print 'Delete call completed successfully.' . PHP_EOL;\n } catch (ApiException $ex) {\n printf('Call failed with message: %s%s', $ex-\u003egetMessage(), PHP_EOL);\n }\n }\n\n /**\n * Helper to execute the sample.\n */\n function callSample(): void\n {\n // These variables are defined at the top of the file.\n $formattedName = LocalInventoryServiceClient::localInventoryName(\n $this::ACCOUNT,\n $this::PRODUCT,\n $this::STORE_CODE\n );\n\n // Deletes the specific local inventory of the parent product.\n $this-\u003edeleteLocalInventorySample($formattedName);\n }\n }\n\n\n $sample = new DeleteLocalInventory();\n $sample-\u003ecallSample(); \n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/php/examples/inventories/v1beta/DeleteLocalInventorySample.php\n\nPython \n\n # -*- coding: utf-8 -*-\n # Copyright 2024 Google LLC\n #\n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with the License.\n # You may obtain a copy of the License at\n #\n # http://www.apache.org/licenses/LICENSE-2.0\n #\n # Unless required by applicable law or agreed to in writing, software\n # distributed under the License is distributed on an \"AS IS\" BASIS,\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \"\"\"A module to delete a Local Inventory.\"\"\"\n\n from examples.authentication import configuration\n from examples.authentication import generate_user_credentials\n from google.shopping import merchant_inventories_v1beta\n\n # ENSURE you fill in the product ID and store code\n # for the sample to work.\n _ACCOUNT = configuration.Configuration().read_merchant_info()\n _PRODUCT = \"[INSERT_PRODUCT_HERE]\"\n _STORE_CODE = \"[INSERT_STORE_CODE_HERE]\"\n _NAME = (f\"accounts/{_ACCOUNT}/products/{_PRODUCT}/localInventories/\"\n f\"{_STORE_CODE}\")\n\n\n def delete_local_inventory():\n \"\"\"Deletes the specified `LocalInventory` resource from the given product.\n\n It might take up to an hour for the `LocalInventory` to be deleted\n from the specific product. Once you have received a successful delete\n response, wait for that period before attempting a delete again.\n \"\"\"\n\n # Gets OAuth Credentials.\n credentials = generate_user_credentials.main()\n\n # Creates a client.\n client = merchant_inventories_v1beta.LocalInventoryServiceClient(\n credentials=credentials)\n\n # Creates the request.\n request = merchant_inventories_v1beta.DeleteLocalInventoryRequest(name=_NAME)\n\n # Makes the request and catch and print any error messages.\n try:\n client.delete_local_inventory(request=request)\n print(\"Delete successful\")\n except RuntimeError as e:\n print(\"Delete failed\")\n print(e)\n\n\n if __name__ == \"__main__\":\n delete_local_inventory()\n\n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/python/examples/inventories/v1beta/delete_local_inventory_sample.py"]]