আঞ্চলিক তথ্য আপ টু ডেট রাখুন

আপনি আপনার অনলাইন পণ্যগুলির জন্য আঞ্চলিক তথ্য আপ টু ডেট রাখতে মার্চেন্ট API ব্যবহার করতে পারেন৷ এর মধ্যে রয়েছে মূল্য এবং উপলব্ধতা আপডেট করা এবং পণ্যটি আর বিক্রি হয় না এমন অঞ্চলগুলিকে সরিয়ে দেওয়া।

আপনি যদি একটি ইকমার্স প্ল্যাটফর্ম হন, তাহলে আপনি একটি ইন্টারফেস তৈরি করতে মার্চেন্ট API ব্যবহার করতে পারেন যেখানে আপনার বণিকরা তাদের পণ্যের আঞ্চলিক মূল্য এবং উপলব্ধতা আপডেট করতে পারে৷

অঞ্চল অনুসারে দাম এবং প্রাপ্যতা আপডেট করুন

একটি পণ্যের জন্য আঞ্চলিক তথ্য আপডেট করতে regionalInventories.insert ব্যবহার করুন। এই কলটি সম্পূর্ণ RegionalInventory রিসোর্স প্রতিস্থাপন করে, তাই নিশ্চিত করুন যে আপনি সমস্ত ক্ষেত্র অন্তর্ভুক্ত করেছেন। একটি কোড নমুনা এবং আরও বিশদ বিবরণের জন্য অনলাইন পণ্যগুলিতে আঞ্চলিক তথ্য যুক্ত করুন দেখুন৷

আপনার বিদ্যমান অঞ্চল দেখুন

এই বিভাগটি ব্যাখ্যা করে যে কীভাবে একটি পণ্য বা অ্যাকাউন্টের সাথে সংশ্লিষ্ট অঞ্চলগুলি দেখতে হয়।

পণ্য দ্বারা

আপনার অ্যাকাউন্টে একটি নির্দিষ্ট পণ্যের সাথে সংযুক্ত সমস্ত আঞ্চলিক ইনভেন্টরি তালিকাভুক্ত করতে regionalInventories.list ব্যবহার করুন। প্রতিটি আঞ্চলিক ইনভেন্টরি যে অঞ্চলকে নির্দেশ করে তা চিহ্নিত করতে region ক্ষেত্রটি ব্যবহার করুন।

এখানে একটি নমুনা রয়েছে যা আপনি একটি পণ্যের জন্য আঞ্চলিক তালিকা তালিকা করতে ব্যবহার করতে পারেন:

জাভা

  public static void listRegionalInventories(Config config, String productId) throws Exception {
    GoogleCredentials credential = new Authenticator().authenticate();

    RegionalInventoryServiceSettings regionalInventoryServiceSettings =
        RegionalInventoryServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();

    String parent = getParent(config.getMerchantId().toString(), productId);

    try (RegionalInventoryServiceClient regionalInventoryServiceClient =
        RegionalInventoryServiceClient.create(regionalInventoryServiceSettings)) {

      //  The parent product has the format: accounts/{account}/products/{product}
      ListRegionalInventoriesRequest request =
          ListRegionalInventoriesRequest.newBuilder().setParent(parent).build();

      System.out.println("Sending list regional inventory request:");
      ListRegionalInventoriesPagedResponse response =
          regionalInventoryServiceClient.listRegionalInventories(request);

      int count = 0;

      // Iterates over all rows in all pages and prints the regional inventory
      // in each row.
      for (RegionalInventory element : response.iterateAll()) {
        System.out.println(element);
        count++;
      }
      System.out.print("The following count of elements were returned: ");
      System.out.println(count);
    } catch (Exception e) {
      System.out.println(e);
    }
  }

cURL

  curl --location
  'https://merchantapi.googleapis.com/inventories/v1beta/accounts/987654321/products/en~US~12345/regionalInventories' \
  --header 'Authorization: Bearer <API_TOKEN>'

পিএইচপি

class ListRegionalInventories
{

    // ENSURE you fill in the merchant account and product ID for the sample to
    // work.
    private const PARENT = 'accounts/[INSERT_ACCOUNT_HERE]/products/[INSERT_PRODUCT_HERE]';

    /**
     * Lists all the regional inventories of a given product.
     *
     * @param string $parent The `name` of the parent product to list `RegionalInventory`
     *     resources for.
     *     Format: `accounts/{account}/products/{product}`
     */
    function listRegionalInventoriesSample(string $parent): 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.
        $regionalInventoryServiceClient = new RegionalInventoryServiceClient($options);

        // Calls the API and catches and prints any network failures/errors.
        try {
            // Page size is set to the default value. If you are returned more
            // responses than your page size, this code will automatically
            // re-call the service with the `pageToken` until all responses
            // are returned.
            $parameters = ['pageSize' => 25000];

            /** @var PagedListResponse $response */
            $response =
                $regionalInventoryServiceClient->listRegionalInventories($parent, $parameters);

            /** @var RegionalInventory $element */
            foreach ($response as $element) {
                printf('RegionalInventory data: %s%s', $element->serializeToJsonString(), PHP_EOL);
            }
        } catch (ApiException $ex) {
            printf('Call failed with message: %s%s', $ex->getMessage(), PHP_EOL);
        }
    }

    // Helper to execute the sample.
    function callSample(): void
    {
        // Lists all the regional inventories of the parent product.
        $this->listRegionalInventoriesSample($this::PARENT);
    }
}

পাইথন

from examples.authentication import generate_user_credentials
from google.shopping import merchant_inventories_v1beta

# ENSURE you fill in the merchant account and product ID for the sample to
# work.
_ACCOUNT = "[INSERT_ACCOUNT_HERE]"
_PRODUCT = "[INSERT_PRODUCT_HERE]"
_PARENT = f"accounts/{_ACCOUNT}/products/{_PRODUCT}"


def list_regional_inventories():
  """Lists the `RegionalInventory` resources for the given product.

  The response might contain fewer items than specified by
  `pageSize`. If `pageToken` was returned in previous request, it can be
  used to obtain additional results.

  `RegionalInventory` resources are listed per product for a given account.
  """

  # Gets OAuth Credentials.
  credentials = generate_user_credentials.main()

  # Creates a client.
  client = merchant_inventories_v1beta.RegionalInventoryServiceClient(
      credentials=credentials)

  # Creates the request.
  # Page size is set to the default value.
  request = merchant_inventories_v1beta.ListRegionalInventoriesRequest(
      parent=_PARENT,
      page_size=25000
  )

  try:
    # Makes the request and catch and print any error messages.
    # If you are returned more responses than your page size, this code
    # will automatically re-call the service with the `pageToken` until all
    # responses are returned.
    page_result = client.list_regional_inventories(request=request)

    # Print the response.
    for response in page_result:
      print(response)

  except Exception as e:
    print("List failed")
    print(e)

অ্যাকাউন্ট দ্বারা

আপনার অ্যাকাউন্টের জন্য সমস্ত অঞ্চল দেখতে আপনি কেনাকাটার জন্য সামগ্রী API-তে regions.list পদ্ধতি ব্যবহার করতে পারেন।

অঞ্চলগুলি সরান

আপনি যে অঞ্চলে আর পণ্য বিক্রি করেন না সেগুলিকে কীভাবে সরিয়ে ফেলা যায় তা এখানে।

পণ্য থেকে

যদি একটি পণ্য আর একটি নির্দিষ্ট অঞ্চলে বিক্রি না হয়, তাহলে আপনাকে পণ্য থেকে সেই আঞ্চলিক ইনভেন্টরি তথ্য সরিয়ে ফেলতে হবে। আপনি একটি পণ্য থেকে একটি নির্দিষ্ট আঞ্চলিক ইনভেন্টরি এন্ট্রি অপসারণ করতে regionalInventories.delete ব্যবহার করতে পারেন।

এখানে একটি নমুনা রয়েছে যা আপনি একটি পণ্য থেকে একটি আঞ্চলিক ইনভেন্টরি এন্ট্রি সরাতে ব্যবহার করতে পারেন:

জাভা

  public static void deleteRegionalInventory(Config config, String productId, String regionId)
      throws Exception {
    // TODO(brothman): Please add more line comments to explain what each significant step is doing.
    // For example:
    // Obtains OAuth tokens based on the configuration.
    // Creates service settings using the credentials above. Etc

    GoogleCredentials credential = new Authenticator().authenticate();

    RegionalInventoryServiceSettings regionalInventoryServiceSettings =
        RegionalInventoryServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();

    String name =
        RegionalInventoryName.newBuilder()
            .setAccount(config.getMerchantId().toString())
            .setProduct(productId)
            .setRegion(regionId)
            .build()
            .toString();

    try (RegionalInventoryServiceClient regionalInventoryServiceClient =
        RegionalInventoryServiceClient.create(regionalInventoryServiceSettings)) {
      DeleteRegionalInventoryRequest request =
          DeleteRegionalInventoryRequest.newBuilder().setName(name).build();

      System.out.println("Sending deleteRegionalInventory request");
      regionalInventoryServiceClient.deleteRegionalInventory(
          request); // no response returned on success
      System.out.println(
          "Delete successful, note that it may take up to 30 minutes for the delete to update in"
              + " the system.");
    } catch (Exception e) {
      System.out.println(e);
    }
  }

cURL

  curl --location --request DELETE
  'https://merchantapi.googleapis.com/inventories/v1beta/accounts/987654321/products/en~US~12345/regionalInventories/123456' \
  --header 'Authorization: Bearer <API_TOKEN>'

পিএইচপি

class DeleteRegionalInventory
{

    // 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 REGION = 'INSERT_REGION_ID_HERE';

    /**
     * Deletes a specific regional inventory of a given product.
     *
     * @param string $formattedName The name of the `RegionalInventory` resource
     * to delete.
     *     Format: `accounts/{account}/products/{product}/regionalInventories/{region}`
     *     Please see {@see RegionalInventoryServiceClient::regionalInventoryName()}
     *     for help formatting this field.
     */
    function deleteRegionalInventorySample(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.
         $regionalInventoryServiceClient = new RegionalInventoryServiceClient($options);

         // Calls the API and catches and prints any network failures/errors.
         try {
             $regionalInventoryServiceClient->deleteRegionalInventory($formattedName);
             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 = RegionalInventoryServiceClient::regionalInventoryName(
            $this::ACCOUNT,
            $this::PRODUCT,
            $this::REGION
        );

        // Deletes the specific regional inventory of the parent product.
        $this->deleteRegionalInventorySample($formattedName);
    }
}

পাইথন

from examples.authentication import generate_user_credentials
from google.shopping import merchant_inventories_v1beta

# ENSURE you fill in the merchant account and product ID and region ID
# for the sample to work.
_ACCOUNT = "[INSERT_ACCOUNT_HERE]"
_PRODUCT = "[INSERT_PRODUCT_HERE]"
_REGION = "[INSERT_REGION_HERE]"
_NAME = f"accounts/{_ACCOUNT}/products/{_PRODUCT}/regionalInventories/{_REGION}"


def delete_regional_inventory():
  """Deletes the specified `RegionalInventory` resource from the given product.

  It might take up to an hour for the `RegionalInventory` 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_v1beta.RegionalInventoryServiceClient(
      credentials=credentials)

  # Creates the request.
  request = merchant_inventories_v1beta.DeleteRegionalInventoryRequest(
      name=_NAME,
  )

  # Makes the request and catch and print any error messages.
  try:
    client.delete_regional_inventory(request=request)
    print("Delete successful")
  except Exception as e:
    print("Delete failed")
    print(e)

একটি পণ্য থেকে RegionalInventory এন্ট্রি সরাতে 30 মিনিট পর্যন্ত সময় লাগতে পারে।

এই কল শুধুমাত্র নির্দিষ্ট product থেকে শুধুমাত্র নির্দিষ্ট region জন্য তথ্য সরিয়ে দেয়।

হিসাব থেকে

আপনি শপিংয়ের জন্য সামগ্রী API-তে regions.delete পদ্ধতি ব্যবহার করতে পারেন যেখানে আপনি আপনার সমগ্র বণিক অ্যাকাউন্ট থেকে আপনার পণ্য বিক্রি করবেন না এমন অঞ্চলগুলিকে সরাতে পারেন৷