I want to get the performance of targeted placement-URLs (Mobile Apps) in my campaign(s).
How can I do that?
What's missing from my AWQL / API requests?
I am trying in 2 approaches;
In either way, I receive a list of
Excluded placements for that campaign,
but NOT the Placements I want to target
Via AWQL:SELECT CampaignId, Url, IsPathExcluded
FROM URL_PERFORMANCE_REPORT
WHERE CampaignId = 213667385 DURING 20150126,20150126"
Or via API:{
'fields': ['CampaignId', 'Id', 'CriteriaType', 'PlacementUrl'],
'predicates': [
{
'field': 'CriteriaType',
'operator': 'IN',
'values': ['MOBILE_APPLICATION', ]
},
{
'field': 'CampaignId',
'operator': 'IN',
'values': cids,
}
via CampaignCriterionService
Background info:
This is how I added targeted mobileapps / placements (which eventually do NOT appear in the above reports):{
'xsi_type': 'BiddableAdGroupCriterion',
'adGroupId': adgroup_id,
'criterion': {
'xsi_type': 'MobileApplication',
'appId': placement_url,
}
via adgroupCriterionService