Gérer les accords des conditions d'utilisation de Merchant Center

Pour utiliser Merchant Center et ses fonctionnalités, vous devez accepter les conditions d'utilisation de Merchant Center pour votre établissement. Ces accords décrivent les conditions légales d'utilisation des services Merchant Center.

Ce guide explique comment utiliser l'API Merchant pour gérer ces contrats, que ce soit pour votre propre compte ou pour les comptes que vous gérez en tant que fournisseur tiers.

Vous pouvez effectuer les opérations suivantes :

  • Vérifier l'état actuel du contrat relatif aux conditions d'utilisation d'un compte.
  • Guider les marchands pour qu'ils acceptent les conditions d'utilisation nécessaires.
  • Gérer les conditions d'utilisation en tant que fournisseur de services pour les comptes clients.

Prérequis

Pour utiliser l'API Merchant, vous devez disposer d'un compte Merchant Center. Une fois que vous l'avez créé à l'aide de l'interface utilisateur de Merchant Center, vous pouvez le modifier (par exemple, mettre à jour les informations sur votre établissement, gérer les utilisateurs, etc.) à l'aide de l'interface utilisateur ou de l'API.

Si vous devez gérer plusieurs comptes, vous pouvez créer des comptes clients à l'aide de l'API Merchant. Consultez Créer des comptes.

Vérifier l'état du contrat relatif aux conditions d'utilisation d'un compte

Avant qu'un marchand puisse utiliser pleinement Merchant Center, ou si vous devez vérifier l'état actuel de son contrat, vous pouvez récupérer l'état de son contrat relatif aux conditions d'utilisation.

Utilisez la termsOfServiceAgreementStates.retrieveForApplication méthode pour obtenir l'état du contrat relatif aux conditions d'utilisation de l'application Merchant Center principale. Cette méthode renvoie vos conditions d'utilisation actuelles, le cas échéant, et, si les conditions d'utilisation ont été mises à jour depuis votre dernière acceptation, la dernière version que vous devez accepter.

Voici un exemple de requête :

GET https://merchantapi.googleapis.com/accounts/v1/accounts/{ACCOUNT_ID}/termsOfServiceAgreementStates:retrieveForApplication

Un appel réussi renvoie une TermsOfServiceAgreementState ressource. Cette ressource contient les éléments suivants :

  • name : identifiant de cet état de contrat.
  • regionCode: pays auquel cet état de contrat s'applique, généralement le pays de l'établissement du compte.
  • termsOfServiceKind : il s'agit de MERCHANT_CENTER.
  • accepted : informations sur la version des conditions d'utilisation que le compte a déjà acceptée, y compris le nom de la ressource termsOfService (par exemple, termsOfService/132) et la personne qui l'a acceptedBy. Elle peut également inclure une date validUntil si une version plus récente des conditions d'utilisation est required.
  • required : informations sur une version des conditions d'utilisation que le compte doit accepter. Cela inclut le nom de la ressource termsOfService et un tosFileUri pointant vers le document des conditions d'utilisation lisible par l'humain.

Exemple de réponse :

{
  "name": "accounts/{ACCOUNT_ID}/termsOfServiceAgreementStates/MERCHANT_CENTER-{REGION_CODE}",
  "regionCode": "{REGION_CODE}",
  "termsOfServiceKind": "MERCHANT_CENTER",
  "accepted": {
    "termsOfService": "termsOfService/132",
    "acceptedBy": "accounts/{ACCOUNT_ID}"
  },
  "required": {
    "termsOfService": "termsOfService/132",
    "tosFileUri": "https://www.google.com/intl/{REGION_CODE}/policies/merchants/terms/"
  }
}

Si de nouvelles conditions d'utilisation sont required, vous devez guider le marchand pour qu'il les accepte.

Voici un exemple que vous pouvez utiliser pour récupérer l'état du contrat relatif aux conditions d'utilisation d'un compte et d'un pays spécifiques :

Java

import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.merchant.accounts.v1.GetTermsOfServiceAgreementStateRequest;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceAgreementState;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceAgreementStateName;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceAgreementStateServiceClient;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceAgreementStateServiceSettings;
import shopping.merchant.samples.utils.Authenticator;
import shopping.merchant.samples.utils.Config;

/**
 * This class demonstrates how to get a TermsOfServiceAgreementState for a specific
 * TermsOfServiceKind and country.
 */
public class GetTermsOfServiceAgreementStateSample {

  public static void getTermsOfServiceAgreementState(Config config) throws Exception {

    // Obtains OAuth token based on the user's configuration.
    GoogleCredentials credential = new Authenticator().authenticate();

    // Creates service settings using the credentials retrieved above.
    TermsOfServiceAgreementStateServiceSettings termsOfServiceAgreementStateServiceSettings =
        TermsOfServiceAgreementStateServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();

    // Creates TermsOfServiceAgreementState name to identify TermsOfServiceAgreementState.
    String name =
        TermsOfServiceAgreementStateName.newBuilder()
            .setAccount(config.getAccountId().toString())
            // The Identifier is: "{TermsOfServiceKind}-{country}"
            .setIdentifier("MERCHANT_CENTER-US")
            .build()
            .toString();

    System.out.println(name);

    // Calls the API and catches and prints any network failures/errors.
    try (TermsOfServiceAgreementStateServiceClient termsOfServiceAgreementStateServiceClient =
        TermsOfServiceAgreementStateServiceClient.create(
            termsOfServiceAgreementStateServiceSettings)) {

      // The name has the format:
      // accounts/{account}/termsOfServiceAgreementStates/{TermsOfServiceKind}-{country}
      GetTermsOfServiceAgreementStateRequest request =
          GetTermsOfServiceAgreementStateRequest.newBuilder().setName(name).build();

      System.out.println("Sending Get TermsOfServiceAgreementState request:");
      TermsOfServiceAgreementState response =
          termsOfServiceAgreementStateServiceClient.getTermsOfServiceAgreementState(request);

      System.out.println("Retrieved TermsOfServiceAgreementState below");
      // If the terms of service needs to be accepted, the "required" field will include the
      // specific version of the terms of service which needs to be accepted, alongside a link to
      // the terms of service itself.
      System.out.println(response);
    } catch (Exception e) {
      System.out.println(e);
    }
  }


  public static void main(String[] args) throws Exception {
    Config config = Config.load();

    getTermsOfServiceAgreementState(config);
  }
}

PHP

use Google\ApiCore\ApiException;
use Google\Shopping\Merchant\Accounts\V1\Client\TermsOfServiceAgreementStateServiceClient;
use Google\Shopping\Merchant\Accounts\V1\GetTermsOfServiceAgreementStateRequest;

/**
 * Demonstrates how to get a TermsOfServiceAgreementState.
 */
class GetTermsOfServiceAgreementState
{

    /**
     * Gets a TermsOfServiceAgreementState.
     *
     * @param array $config The configuration data.
     * @return void
     */
    public static function getTermsOfServiceAgreementState($config): void
    {
        // Get OAuth credentials.
        $credentials = Authentication::useServiceAccountOrTokenFile();

        // Create client options.
        $options = ['credentials' => $credentials];

        // Create a TermsOfServiceAgreementStateServiceClient.
        $termsOfServiceAgreementStateServiceClient = new TermsOfServiceAgreementStateServiceClient($options);

        // Service agreeement identifier
        $identifier = "MERCHANT_CENTER-US";

        // Create TermsOfServiceAgreementState name.
        $name = "accounts/" . $config['accountId'] . "/termsOfServiceAgreementStates/" . $identifier;

        print $name . PHP_EOL;

        try {
            // Prepare the request.
            $request = new GetTermsOfServiceAgreementStateRequest([
                'name' => $name,
            ]);

            print "Sending Get TermsOfServiceAgreementState request:" . PHP_EOL;
            $response = $termsOfServiceAgreementStateServiceClient->getTermsOfServiceAgreementState($request);

            print "Retrieved TermsOfServiceAgreementState below\n";
            print $response->serializeToJsonString() . PHP_EOL;
        } catch (ApiException $e) {
            print $e->getMessage();
        }
    }

    /**
     * Helper to execute the sample.
     *
     * @return void
     */
    public function callSample(): void
    {
        $config = Config::generateConfig();

        self::getTermsOfServiceAgreementState($config);
    }

}

// Run the script
$sample = new GetTermsOfServiceAgreementState();
$sample->callSample();

Python

from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping.merchant_accounts_v1 import GetTermsOfServiceAgreementStateRequest
from google.shopping.merchant_accounts_v1 import TermsOfServiceAgreementStateServiceClient

# Replace with your actual value.
_ACCOUNT_ID = configuration.Configuration().read_merchant_info()
_IDENTIFIER = "MERCHANT_CENTER-US"  # Replace with your identifier


def get_terms_of_service_agreement_state():
  """Gets a TermsOfServiceAgreementState for a specific TermsOfServiceKind and country."""

  credentials = generate_user_credentials.main()
  client = TermsOfServiceAgreementStateServiceClient(credentials=credentials)

  name = (
      "accounts/"
      + _ACCOUNT_ID
      + "/termsOfServiceAgreementStates/"
      + _IDENTIFIER
  )

  print(name)

  request = GetTermsOfServiceAgreementStateRequest(name=name)

  try:
    print("Sending Get TermsOfServiceAgreementState request:")
    response = client.get_terms_of_service_agreement_state(request=request)
    print("Retrieved TermsOfServiceAgreementState below")
    print(response)
  except RuntimeError as e:
    print(e)


if __name__ == "__main__":
  get_terms_of_service_agreement_state()

Accepter les conditions d'utilisation

Les marchands doivent accepter les dernières conditions d'utilisation pour conserver l'accès aux fonctionnalités de Merchant Center.

Accepter les conditions d'utilisation pour votre propre compte

Si vous gérez votre propre compte Merchant Center, procédez comme suit :

  1. Appelez termsOfServiceAgreementStates.retrieveForApplication pour identifier si des conditions d'utilisation sont required.
  2. Si des conditions d'utilisation sont requises, notez le termsOfService nom du required champ (par exemple, termsOfService/132).
  3. Appelez termsOfService.accept pour accepter les conditions d'utilisation. Vous aurez besoin du nom des conditions d'utilisation, de votre ACCOUNT_ID et du regionCode renvoyé par retrieveForApplication.

    Voici un exemple de requête :

    POST https://merchantapi.googleapis.com/accounts/v1/{name={termsOfService/VERSION}}:accept
    {
      "account": "accounts/{ACCOUNT_ID}",
      "regionCode": "{REGION_CODE}"
    }
    

    Un appel réussi renvoie un corps de réponse vide et met à jour l'état du contrat relatif aux conditions d'utilisation du compte.

Guider les marchands pour qu'ils acceptent les conditions d'utilisation (pour les fournisseurs tiers)

Si vous êtes un fournisseur tiers qui gère des comptes Merchant Center pour d'autres entreprises, vous ne devez pas accepter les conditions d'utilisation en leur nom. Vous devez plutôt procéder comme suit :

  1. Récupérer les dernières conditions d'utilisation : appelez termsOfService.retrieveLatest pour le regionCode et le type MERCHANT_CENTER du marchand afin d'obtenir les détails de la dernière version des conditions d'utilisation qu'il devra peut-être accepter.

    Exemple de requête :

    GET https://merchantapi.googleapis.com/accounts/v1/termsOfService:retrieveLatest?regionCode={REGION_CODE}&kind=MERCHANT_CENTER
    

    Exemple de réponse :

    {
        "name": "{termsOfService/VERSION}",
        "regionCode": "{REGION_CODE}",
        "kind": "MERCHANT_CENTER",
        "fileUri": "https://www.google.com/intl/{REGION_CODE}/policies/merchants/terms/"
    }
    
  2. Afficher les conditions d'utilisation : utilisez le fileUri de la réponse pour afficher le texte intégral des conditions d'utilisation au marchand dans l'interface utilisateur de votre application.

  3. Obtenir l'acceptation du marchand : le marchand doit accepter explicitement les conditions d'utilisation dans votre interface utilisateur.

  4. Enregistrer l'acceptation à l'aide de l'API : une fois que le marchand a accepté les conditions d'utilisation, appelez termsOfService.accept en utilisant le name des conditions d'utilisation obtenu à l'étape 1, le ACCOUNT_ID du marchand, et son regionCode.

    Exemple de requête :

    POST https://merchantapi.googleapis.com/accounts/v1/{name={termsOfService/VERSION}}:accept
    {
      "account": "accounts/{MERCHANT_ACCOUNT_ID}",
      "regionCode": "{REGION_CODE}"
    }
    

Voici un exemple que vous pouvez utiliser pour accepter le contrat relatif aux conditions d'utilisation d'un compte donné (une fois que le marchand a accepté les conditions d'utilisation) :

Java

import com.google.api.gax.core.FixedCredentialsProvider;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.shopping.merchant.accounts.v1.AcceptTermsOfServiceRequest;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceServiceClient;
import com.google.shopping.merchant.accounts.v1.TermsOfServiceServiceSettings;
import shopping.merchant.samples.utils.Authenticator;
import shopping.merchant.samples.utils.Config;

/** This class demonstrates how to accept the TermsOfService agreement in a given account. */
public class AcceptTermsOfServiceSample {

  public static void acceptTermsOfService(String accountId, String tosVersion, String regionCode)
      throws Exception {

    // Obtains OAuth token based on the user's configuration.
    GoogleCredentials credential = new Authenticator().authenticate();

    // Creates service settings using the credentials retrieved above.
    TermsOfServiceServiceSettings tosServiceSettings =
        TermsOfServiceServiceSettings.newBuilder()
            .setCredentialsProvider(FixedCredentialsProvider.create(credential))
            .build();

    // Calls the API and catches and prints any network failures/errors.
    try (TermsOfServiceServiceClient tosServiceClient =
        TermsOfServiceServiceClient.create(tosServiceSettings)) {

      // The parent has the format: accounts/{account}
      AcceptTermsOfServiceRequest request =
          AcceptTermsOfServiceRequest.newBuilder()
              .setName(String.format("termsOfService/%s", tosVersion))
              .setAccount(String.format("accounts/%s", accountId))
              .setRegionCode(regionCode)
              .build();

      System.out.println("Sending request to accept terms of service...");
      tosServiceClient.acceptTermsOfService(request);

      System.out.println("Successfully accepted terms of service.");
    } catch (Exception e) {
      System.out.println(e);
    }
  }

  public static void main(String[] args) throws Exception {
    Config config = Config.load();

    // See GetTermsOfServiceAgreementStateSample to understand how to check which version of the
    // terms of service needs to be accepted, if any.
    // Likewise, if you know that the terms of service needs to be accepted, you can also simply
    // call RetrieveLatestTermsOfService to get the latest version of the terms of service.
    // Region code is either a country when the ToS applies specifically to that country or 001 when
    // it applies globally.
    acceptTermsOfService(config.getAccountId().toString(), "VERSION_HERE", "REGION_CODE_HERE");
  }
}

PHP

use Google\ApiCore\ApiException;
use Google\Shopping\Merchant\Accounts\V1\AcceptTermsOfServiceRequest;
use Google\Shopping\Merchant\Accounts\V1\Client\TermsOfServiceServiceClient;

/**
 * Demonstrates how to accept the TermsOfService agreement in a given account.
 */
class AcceptTermsOfService
{

    /**
     * Accepts the Terms of Service agreement.
     *
     * @param string $accountId The account ID.
     * @param string $tosVersion The Terms of Service version.
     * @param string $regionCode The region code.
     * @return void
     */
    public static function acceptTermsOfService($accountId, $tosVersion, $regionCode): void
    {
        // Get OAuth credentials.
        $credentials = Authentication::useServiceAccountOrTokenFile();

        // Create client options.
        $options = ['credentials' => $credentials];

        // Create a TermsOfServiceServiceClient.
        $tosServiceClient = new TermsOfServiceServiceClient($options);

        try {
            // Prepare the request.
            $request = new AcceptTermsOfServiceRequest([
                'name' => sprintf("termsOfService/%s", $tosVersion),
                'account' => sprintf("accounts/%s", $accountId),
                'region_code' => $regionCode,
            ]);

            print "Sending request to accept terms of service...\n";
            $tosServiceClient->acceptTermsOfService($request);

            print "Successfully accepted terms of service.\n";
        } catch (ApiException $e) {
            print $e->getMessage();
        }
    }

    /**
     * Helper to execute the sample.
     *
     * @return void
     */
    public function callSample(): void
    {
        $config = Config::generateConfig();

        // Replace with actual values.
        $tosVersion = "132";
        $regionCode = "US";

        self::acceptTermsOfService($config['accountId'], $tosVersion, $regionCode);
    }
}

// Run the script
$sample = new AcceptTermsOfService();
$sample->callSample();

Python

from examples.authentication import configuration
from examples.authentication import generate_user_credentials
from google.shopping.merchant_accounts_v1 import AcceptTermsOfServiceRequest
from google.shopping.merchant_accounts_v1 import TermsOfServiceServiceClient

# Replace with your actual values.
_ACCOUNT_ID = configuration.Configuration().read_merchant_info()
_TOS_VERSION = (  # Replace with the Terms of Service version to accept
    "VERSION_HERE"
)
_REGION_CODE = "US"  # Replace with the region code


def accept_terms_of_service():
  """Accepts the Terms of Service agreement for a given account."""

  credentials = generate_user_credentials.main()
  client = TermsOfServiceServiceClient(credentials=credentials)

  # Construct the request
  request = AcceptTermsOfServiceRequest(
      name=f"termsOfService/{_TOS_VERSION}",
      account=f"accounts/{_ACCOUNT_ID}",
      region_code=_REGION_CODE,
  )

  try:
    print("Sending request to accept terms of service...")
    client.accept_terms_of_service(request=request)
    print("Successfully accepted terms of service.")
  except RuntimeError as e:
    print(e)


if __name__ == "__main__":
  accept_terms_of_service()

Considérations particulières pour les fournisseurs tiers

En tant que fournisseur tiers, vous pouvez gérer les conditions d'utilisation des comptes clients.

Gérer les conditions d'utilisation des comptes clients

Si vous utilisez un compte avancé et que vous créez des comptes clients pour différentes entreprises :

  • Acceptation du compte avancé : si un compte avancé fournit le service d'agrégation de comptes aux comptes clients, les conditions d'utilisation acceptées par le compte avancé s'appliqueront également à tous ses comptes clients avec ce service.
  • Affichage et consentement : même si l'acceptation du compte avancé couvre les comptes clients, il est recommandé (et peut-être une obligation légale) d'afficher les conditions d'utilisation de Google Merchant Center pertinentes au propriétaire réel de chaque client. Vous devez obtenir son consentement explicite pour confirmer qu'il comprend et accepte ces conditions, même si l'appel d'API pour l'acceptation est effectué au niveau du compte avancé.
  • Vérification de l'état du compte client : utilisez termsOfServiceAgreementStates.retrieveForApplication sur un compte client spécifique pour vérifier son état de conditions d'utilisation et voir s'il est couvert par le contrat du compte avancé ou si une action directe est nécessaire.

Gérer les conditions d'utilisation d'autres comptes

Comme indiqué dans Guider les marchands pour qu'ils acceptent les conditions d'utilisation, lorsque vous aidez une entreprise à créer ou à gérer son propre compte, cette entreprise (le propriétaire du compte) doit accepter personnellement les conditions d'utilisation . Pour ce faire, vous devez récupérer et afficher les conditions d'utilisation, puis appeler la méthode termsOfService.accept en son nom après qu'elle a donné son consentement explicite via votre interface.