如何在 SnapLogic 中以 JSON 数据为主体制作 REST Post?
我需要发布到 yahoo 批量文件下载端点 ( https://api.admanager.yahoo.com/v1/rest/bulk/download ) 并且请求正文必须是 JSON 格式:
{
"advertiserId": 30944,
"objectType": "CAMPAIGN",
"downloadAllLevels": true,
"filters": {
"objectIds": [123,
456
],
"objectStatus": [
"ACTIVE"
],
"fromDate": "2014-07-01 00:00:00",
"toDate": "2014-07-10 00:00:00",
"includeNegative":true,
"includeTargeting":true,
"includeExtensions":true
}
}