I'm trying to filter out all 'dynamic' campaigns while fetching all display 
campaigns. 

I can't seem to find any 'dynamic' related attributes/properties on the 
Campaign entity (
https://developers.google.com/adwords/api/docs/reference/v201809/CampaignService.Campaign
)

I then tried to match feeds campaign IDs from CampaignFeedService to the 
actual campaign IDs but this has 2 big down sides. 

    1. For some reason when a campaign has a data feed it doesn't always 
show up in the CampaignFeedService. Which makes this method very unreliable.
    2. It needs 2 separate requests to the API and is therefore very slow. 
(about 5 times slower than only using CampaignService) 

I was hoping there is some sort of predicate filter to filter out dynamic 
feeds but until now I did not find any...

This is my selector:

{
fields: [
'Id',
'Name',
'Status',
// 'Settings',
// 'AdvertisingChannelType',
// 'AdvertisingChannelSubType',
// 'Labels',
],
predicates: [
{
field: 'AdvertisingChannelType',
operator: 'EQUALS',
values: 'DISPLAY'
},
]
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e7f44195-45a3-4d55-afb6-d9996ee7964d%40googlegroups.com.

Reply via email to