Stay organized with collections
Save and categorize content based on your preferences.
Merchant API code sample to get an account.
Java
// 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//// 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.accounts.accounts.v1;importcom.google.api.gax.core.FixedCredentialsProvider;importcom.google.auth.oauth2.GoogleCredentials;importcom.google.shopping.merchant.accounts.v1.Account;importcom.google.shopping.merchant.accounts.v1.AccountName;importcom.google.shopping.merchant.accounts.v1.AccountsServiceClient;importcom.google.shopping.merchant.accounts.v1.AccountsServiceSettings;importcom.google.shopping.merchant.accounts.v1.GetAccountRequest;importshopping.merchant.samples.utils.Authenticator;importshopping.merchant.samples.utils.Config;/** This class demonstrates how to get a single Merchant Center account. */publicclassGetAccountSample{publicstaticvoidgetAccount(Configconfig)throwsException{// Obtains OAuth token based on the user's configuration.GoogleCredentialscredential=newAuthenticator().authenticate();// Creates service settings using the credentials retrieved above.AccountsServiceSettingsaccountsServiceSettings=AccountsServiceSettings.newBuilder().setCredentialsProvider(FixedCredentialsProvider.create(credential)).build();// Gets the account ID from the config file.StringaccountId=config.getAccountId().toString();// Creates account name to identify account.Stringname=AccountName.newBuilder().setAccount(accountId).build().toString();// Calls the API and catches and prints any network failures/errors.try(AccountsServiceClientaccountsServiceClient=AccountsServiceClient.create(accountsServiceSettings)){// The name has the format: accounts/{account}GetAccountRequestrequest=GetAccountRequest.newBuilder().setName(name).build();System.out.println("Sending Get Account request:");Accountresponse=accountsServiceClient.getAccount(request);System.out.println("Retrieved Account below");System.out.println(response);}catch(Exceptione){System.out.println(e);}}publicstaticvoidmain(String[]args)throwsException{Configconfig=Config.load();getAccount(config);}}
<?php/** * Copyright 2025 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';require_once __DIR__ . '/../../../Authentication/Config.php';use Google\ApiCore\ApiException;use Google\Shopping\Merchant\Accounts\V1\Client\AccountsServiceClient;use Google\Shopping\Merchant\Accounts\V1\GetAccountRequest;/** * This class demonstrates how to get a single Merchant Center account. */class GetAccount{ private static function getParent(string $accountId): string { return sprintf("accounts/%s", $accountId); } public static function getAccount(array $config): 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. $accountsServiceClient = new AccountsServiceClient($options); // Gets the account ID from the config file. $accountId = $config['accountId']; // Creates account name to identify account. $name = self::getParent($accountId); // Calls the API and catches and prints any network failures/errors. try { // The name has the format: accounts/{account} $request = new GetAccountRequest(['name' => $name]); print "Sending Get Account request:\n"; $response = $accountsServiceClient->getAccount($request); print "Retrieved Account below\n"; print_r($response); } catch (ApiException $e) { print $e->getMessage(); } } public function callSample(): void { $config = Config::generateConfig(); self::getAccount($config); }}$sample = new GetAccount();$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 get a specific Merchant Center account."""fromexamples.authenticationimportconfigurationfromexamples.authenticationimportgenerate_user_credentialsfromgoogle.shopping.merchant_accounts_v1importAccountsServiceClientfromgoogle.shopping.merchant_accounts_v1importGetAccountRequest_ACCOUNT=configuration.Configuration().read_merchant_info()defget_parent(account_id):returnf"accounts/{account_id}"defget_account():"""Gets a single Merchant Center account."""# Get OAuth credentials.credentials=generate_user_credentials.main()# Create a client.client=AccountsServiceClient(credentials=credentials)# Create the account name.name=get_parent(_ACCOUNT)# Create the request.request=GetAccountRequest(name=name)# Make the request and print the response.try:print("Sending Get Account request:")response=client.get_account(request=request)print("Retrieved Account below")print(response)exceptRuntimeErrorase:print(e)if__name__=="__main__":get_account()
[[["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, PHP, and Python demonstrating how to retrieve a single Merchant Center account.\u003c/p\u003e\n"],["\u003cp\u003eEach code example utilizes OAuth credentials to authenticate and make requests to the Merchant Center Accounts API.\u003c/p\u003e\n"],["\u003cp\u003eThe code samples show how to construct an \u003ccode\u003eAccountName\u003c/code\u003e object or equivalent, necessary for identifying the account, using the account ID.\u003c/p\u003e\n"],["\u003cp\u003eAll the examples demonstrate the use of \u003ccode\u003eGetAccountRequest\u003c/code\u003e to send the proper request to the \u003ccode\u003eAccountsServiceClient\u003c/code\u003e and then print the retrieved account information, or any error messages.\u003c/p\u003e\n"],["\u003cp\u003eEach example uses the \u003ccode\u003eAccountsServiceClient\u003c/code\u003e to retrieve a specific account from a Merchant account, sending a request and then getting a response to print out.\u003c/p\u003e\n"]]],["The code samples demonstrate retrieving a single Merchant Center account using the Merchant API in Java, PHP, and Python. They authenticate using OAuth credentials, then they create an account name using an account ID, and initiate a `GetAccountRequest`. The API is then called to retrieve the account information. The account response is printed, and error handling catches any exceptions during the process. Each sample uses language-specific methods for client creation and request formatting.\n"],null,["Merchant API code sample to get account \n\nJava \n\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 // 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.accounts.accounts.v1beta;\n import com.google.api.gax.core.FixedCredentialsProvider;\n import com.google.auth.oauth2.GoogleCredentials;\n import com.google.shopping.merchant.accounts.v1beta.Account;\n import com.google.shopping.merchant.accounts.v1beta.AccountName;\n import com.google.shopping.merchant.accounts.v1beta.AccountsServiceClient;\n import com.google.shopping.merchant.accounts.v1beta.AccountsServiceSettings;\n import com.google.shopping.merchant.accounts.v1beta.GetAccountRequest;\n import shopping.merchant.samples.utils.Authenticator;\n import shopping.merchant.samples.utils.Config;\n\n /** This class demonstrates how to get a single Merchant Center account. */\n public class GetAccountSample {\n\n public static void getAccount(Config config) throws Exception {\n\n // Obtains OAuth token based on the user's configuration.\n GoogleCredentials credential = new Authenticator().authenticate();\n\n // Creates service settings using the credentials retrieved above.\n AccountsServiceSettings accountsServiceSettings =\n AccountsServiceSettings.newBuilder()\n .setCredentialsProvider(FixedCredentialsProvider.create(credential))\n .build();\n\n // Gets the account ID from the config file.\n String accountId = config.getAccountId().toString();\n\n // Creates account name to identify account.\n String name = AccountName.newBuilder().setAccount(accountId).build().toString();\n\n // Calls the API and catches and prints any network failures/errors.\n try (AccountsServiceClient accountsServiceClient =\n AccountsServiceClient.create(accountsServiceSettings)) {\n\n // The name has the format: accounts/{account}\n GetAccountRequest request = GetAccountRequest.newBuilder().setName(name).build();\n\n System.out.println(\"Sending Get Account request:\");\n Account response = accountsServiceClient.getAccount(request);\n\n System.out.println(\"Retrieved Account below\");\n System.out.println(response);\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 getAccount(config);\n }\n } \n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/java/src/main/java/shopping/merchant/samples/accounts/accounts/v1beta/GetAccountSample.java\n\nPHP \n\n \u003c?php\n /**\n * Copyright 2025 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 require_once __DIR__ . '/../../../../vendor/autoload.php';\n require_once __DIR__ . '/../../../Authentication/Authentication.php';\n require_once __DIR__ . '/../../../Authentication/Config.php';\n use Google\\ApiCore\\ApiException;\n use Google\\Shopping\\Merchant\\Accounts\\V1beta\\Client\\AccountsServiceClient;\n use Google\\Shopping\\Merchant\\Accounts\\V1beta\\GetAccountRequest;\n\n /**\n * This class demonstrates how to get a single Merchant Center account.\n */\n class GetAccount\n {\n\n private static function getParent(string $accountId): string\n {\n return sprintf(\"accounts/%s\", $accountId);\n }\n public static function getAccount(array $config): 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 $accountsServiceClient = new AccountsServiceClient($options);\n\n // Gets the account ID from the config file.\n $accountId = $config['accountId'];\n\n // Creates account name to identify account.\n $name = self::getParent($accountId);\n\n // Calls the API and catches and prints any network failures/errors.\n try {\n\n // The name has the format: accounts/{account}\n $request = new GetAccountRequest(['name' =\u003e $name]);\n\n print \"Sending Get Account request:\\n\";\n $response = $accountsServiceClient-\u003egetAccount($request);\n\n print \"Retrieved Account below\\n\";\n print_r($response);\n } catch (ApiException $e) {\n print $e-\u003egetMessage();\n }\n }\n\n public function callSample(): void\n {\n $config = Config::generateConfig();\n self::getAccount($config);\n }\n }\n\n $sample = new GetAccount();\n $sample-\u003ecallSample(); \n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/php/examples/accounts/accounts/v1beta/GetAccountSample.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 get a specific Merchant Center account.\"\"\"\n\n from examples.authentication import configuration\n from examples.authentication import generate_user_credentials\n from google.shopping.merchant_accounts_v1beta import AccountsServiceClient\n from google.shopping.merchant_accounts_v1beta import GetAccountRequest\n\n _ACCOUNT = configuration.Configuration().read_merchant_info()\n\n\n def get_parent(account_id):\n return f\"accounts/{account_id}\"\n\n\n def get_account():\n \"\"\"Gets a single Merchant Center account.\"\"\"\n\n # Get OAuth credentials.\n credentials = generate_user_credentials.main()\n\n # Create a client.\n client = AccountsServiceClient(credentials=credentials)\n\n # Create the account name.\n name = get_parent(_ACCOUNT)\n\n # Create the request.\n request = GetAccountRequest(name=name)\n\n # Make the request and print the response.\n try:\n print(\"Sending Get Account request:\")\n response = client.get_account(request=request)\n print(\"Retrieved Account below\")\n print(response)\n except RuntimeError as e:\n print(e)\n\n\n if __name__ == \"__main__\":\n get_account()\n\n https://github.com/google/merchant-api-samples/blob/9105060072cf14e232bf8e3d3d3964a659b10984/python/examples/accounts/accounts/v1beta/get_account_sample.py"]]