Exemple de démarrage rapide

Voici un exemple de requête ProductPerformanceView qui indique les performances de votre compte au cours des 30 derniers jours, segmentées par marketingMethod et offerId. Vous pouvez essayer cet exemple rapide pour obtenir de l'API Merchant Reports.

Vous avez besoin de l'onglet Performances et insights rôle pour récupérer ce rapport. Consultez le conditions requises pour plus de détails.

Pour effectuer la demande, transmettez la requête Merchant Center suivante : de langue à la accounts.reports.search méthode:

SELECT
  marketingMethod,
  offerId,
  impressions,
  clicks,
  clickThroughRate
FROM ProductPerformanceView
WHERE date BETWEEN '2020-11-01' AND '2020-11-30'

URL de la requête HTTP

La requête consiste en une requête HTTP POST adressée au serveur de l'API Merchant Reports au niveau de URL suivante:

https://merchantapi.googleapis.com/reports/v1beta/accounts/parent/reports:search

Exemple de requête HTTP complète

Voici un exemple complet illustrant la définition de rapport incluse dans une requête HTTP POST:

POST /reports/v1beta/accounts/parent/reports:search HTTP/1.1
Host: merchantapi.googleapis.com
User-Agent: curl
Content-Type: application/json
Accept: application/json
Authorization: Bearer

Parameters:
{
  "query" : "SELECT
              marketingMethod,
              offerId,
              impressions,
              clicks,
              clickThroughRate
            FROM ProductPerformanceView
            WHERE date BETWEEN '2020-11-01' AND '2020-11-30'"
}

Voici un exemple de réponse :

{
  "results": [
    {
      "productPerformanceView": {
        "marketingMethod": "ADS",
        "offerId": "12345",
        "clicks": "38",
        "impressions": "1038",
        "clickThroughRate": "0.3661"
      }
    },
    {
      "productPerformanceView": {
        "marketingMethod": "ADS",
        "offerId": "12346",
        "clicks": "126",
        "impressions": "1126",
        "clickThroughRate": "0.1119"
      }
    },
    {
      "productPerformanceView": {
        "marketingMethod": "ORGANIC",
        "offerId": "12346",
        "clicks": "26",
        "impressions": "526",
        "clickThroughRate": "0.0494"
      }
    },
    {
      "productPerformanceView": {
        "marketingMethod": "ADS",
        "offerId": "12347",
        "clicks": "227",
        "impressions": "1227",
        "clickThroughRate": "0.1850"
      }
    },
    {
      "productPerformanceView": {
        "marketingMethod": "ORGANIC",
        "offerId": "12347",
        "clicks": "12",
        "impressions": "512",
        "clickThroughRate": "0.0234"
      }
    }
  ]
}