我已经设置了一个查询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
}
我尝试过在线寻求帮助,但到目前为止还很短。 任何帮助将不胜感激。
答案 0 :(得分: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
}