ตัวอย่างการเริ่มต้นอย่างรวดเร็ว

ต่อไปนี้คือตัวอย่างคำค้นหาสำหรับ 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'

URL คำขอ HTTP

โดยคำขอจะประกอบไปด้วย HTTP POST ไปยังเซิร์ฟเวอร์ Merchant Reports API ที่ URL ต่อไปนี้:

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

ตัวอย่างคำขอ HTTP ที่เสร็จสมบูรณ์

ต่อไปนี้เป็นตัวอย่างที่สมบูรณ์ของคำอธิบายรายงานที่แนบมาด้วย คำขอ 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'"
}

ตัวอย่างการตอบกลับมีดังนี้

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