판매자 센터 쿼리 언어는 다음을 제공합니다. 페이지로 나누기를 위한 필드:
pageSize
: 단일 요청에서 검색할 최대 행 수입니다. 기본값은 최대 페이지 크기인 1,000행입니다.pageToken
: 반환할 페이지의 토큰입니다. 지정하지 않으면 첫 번째 페이지가 반환됩니다.nextPageToken
: 다음 페이지를 가져오기 위한pageToken
값accounts.reports.search
있습니다.
pageToken
가 제공되면 호출의 다른 모든 매개변수는
이전 호출에서 예기치 않은 동작을 방지할 수 있습니다.
예를 들어 100,000개의
offerId
값이고 pageSize
가 200으로 설정된 경우 결과에는 200만 포함됨
ReportRow
객체와 nextPageToken
를 함께 제공합니다.
SELECT offerId, impressions, clicks, clickThroughRate
FROM ProductPerformanceView
WHERE date BETWEEN '2021-12-01' AND '2021-12-31'
샘플 응답은 다음과 같습니다 (처음 5개의 결과와
nextPageToken
).
{
"results": [
{
"productPerformanceView": {
"offerId": "12345",
"clicks": "0",
"impressions": "59",
"clickThroughRate": 0
}
},
{
"productPerformanceView": {
"offerId": "12346",
"clicks": "9625",
"impressions": "276695",
"clickThroughRate": 0.034785594246372356
}
},
{
"productPerformanceView": {
"offerId": "12347",
"clicks": "148",
"impressions": "22045",
"clickThroughRate": 0.0067135404853708325
}
},
{
"productPerformanceView": {
"offerId": "12348",
"clicks": "11",
"impressions": "1100",
"clickThroughRate": 0.01
}
},
{
"productPerformanceView": {
"offerId": "12349",
"clicks": "569",
"impressions": "62977",
"clickThroughRate": 0.0090350445400701838
}
},
...
],
"nextPageToken": "CMgB"
}
다음 200개 행을 검색하려면 동일한 페이지 크기로 요청을 다시 보내세요.
요청의 pageToken
를nextPageToken
표시됩니다.