Placement Report Request
Retrieving Placements
The Placement Report API endpoint offers reporting on the performance of inventory based on the available criteria provided in a POST request. Keep in mind the following are required fields for queries on this endpoint: startDate, endDate, advertiserIds, timezone, currency, and disclosed

https://api.criteo.com/preview/placements/report
Examples and definitions for each of the fields are provided in the following pages.
{
"data": [{
"type": "ReportOrder",
"attributes": {
"advertiserIds": "22, 4949",
"startDate": "2020-11-04",
"endDate": "2020-11-04",
"format": "json",
"timezone": "Asia/Tokyo",
"currency": "JPY",
"dimensions": ["advertiserId", "adSetId", "placement"],
"metrics": ["displays", "cost"]
}
}]
}
The report generated from the POST request is returned in the response. The report is generated in the format specified in the request.
{
"data": [{
"type": "Report",
"attributes": {
"rows": [{
"advertiserId": "22",
"adSetId": "200094",
"placement": "My android app",
"displays": "5577",
"cost": "0.0200",
}]
}
}]
}
Updated 4 months ago
Did this page help you?