Apple Search Ads在“groupBy”子句中返回错误

问题描述 投票:0回答:1

我已经设置了一个工具来查询Apple Search Ads API,其文档可以找到here。可以将“groupBy”子句传递给请求,如下所示:

curl -X POST https://api.searchads.apple.com/api/v1/reports/campaigns  \
-H 'Content-Type: application/json'  \
-H 'Authorization: orgId=1056160'  \
-E pem.pem --key key.key \
-d '{"selector": {"pagination": {"limit": 10, "offset": 0}, "orderBy": [{"sortOrder": "DESCENDING", "field": "campaignId"}]}, "returnRecordsWithNoMetrics": false, "granularity": "DAILY", "returnRowTotals": false, "timeZone": "UTC", "endTime": "2019-03-27", "startTime": "2019-02-27", "groupBy": "countryCode"}' \
| python -m json.tool

并期望按countryCode分组的数据。

但是,自2019年4月23日以来,API开始返回错误:

{
    "data": null,
    "error": {
        "errors": [
            {
                "field": "Line#:1 Column#:292",
                "message": "This is an invalid request. At least one field format is not readable by the system.",
                "messageCode": "INVALID_ATTRIBUTE_TYPE"
            }
        ]
    },
    "pagination": null
}

我试着在网上寻求帮助,但到目前为止还没到。任何帮助将不胜感激。

api curl apple-search-ads
1个回答
1
投票

你打什么报告端点?

报告/活动?

如果是广告系列端点,请尝试此有效负载:

{
    "startTime": "2019-02-27",
    "endTime": "2019-03-27",
    "granularity": "DAILY",
    "selector": {
        "orderBy": [
            {
                "field": "campaignId",
                "sortOrder": "DESCENDING"
            }
        ],
        "conditions": [
        ],
        "pagination": {
            "offset": 0,
            "limit": 10
        }
    },
     "groupBy": [
        "countryCode"
    ],
    "timeZone": "UTC",
    "returnRecordsWithNoMetrics": false,
    "returnRowTotals": false,
    "returnGrandTotals": false
}
© www.soinside.com 2019 - 2024. All rights reserved.