빠른 시작 예

다음은 ProductPerformanceView 드림 이 보고서는 지난 30일간의 계정 실적을 marketingMethodofferId 이 간단한 예를 통해 판매자 보고서 API에 익숙해야 합니다

실적 및 통계가 역할을 사용하여 이 보고서를 검색할 수 있습니다. 자세한 내용은 요구사항을 확인하세요.

요청하려면 다음 판매자 센터 쿼리를 전달하세요. Language 문을 accounts.reports.search 메서드를 사용하여 축소하도록 요청합니다.

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

HTTP 요청 URL

요청은 판매자 보고서 API 서버에 대한 HTTP POST로 구성되며 다음 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"
      }
    }
  ]
}