क्विकस्टार्ट का उदाहरण

यहाँ पर एक सैंपल क्वेरी दी गई है, ProductPerformanceView जो पिछले 30 दिनों के दौरान आपके खाते की परफ़ॉर्मेंस को दिखाती है. marketingMethod और offerId. पाने के लिए यह झटपट उदाहरण आज़माएं आपको Merchant Reports API के बारे में पता है.

आपके पास परफ़ॉर्मेंस और अहम जानकारी भूमिका चुनकर भी इस रिपोर्ट को वापस पाया जा सकता है. ज़्यादा जानकारी के लिए, ज़रूरी शर्तें: देखें.

अनुरोध करने के लिए, नीचे दी गई Merchant Center क्वेरी को पास करें भाषा स्टेटमेंट accounts.reports.search तरीका:

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

एचटीटीपी अनुरोध का यूआरएल

अनुरोध में, Merchant Reports API सर्वर के लिए एक एचटीटीपी पीओएसटी शामिल होता है. निम्न URL:

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

एचटीटीपी अनुरोध का सैंपल पूरा करें

यहां रिपोर्ट की परिभाषा दिखाने वाला पूरा उदाहरण दिया गया है एक एचटीटीपी पोस्ट अनुरोध:

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'"
}

यहां एक सैंपल जवाब दिया गया है:

{
  "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"
      }
    }
  ]
}