RE: SelectorError.INVALID_PREDICATE_FIELD_NAME

2022-01-26 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi Samantha,

Thanks for reaching out. Can you confirm which API the third party tool uses? I 
see you linked to ddp.googleapis.com, which is not related to the AdWords or 
Ads API. It seem it's related to the DDP API (Ad Manager). You might try asking 
about this on their dedicated forum, here.

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2VPhUR:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/4FRAW0R6C5YA00z-uGstgGSMa8Kxt2eKBsCw%40sfdc.net.


Re: SelectorError.INVALID_PREDICATE_FIELD_NAME

2018-11-01 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, 

The field ProductPartition.partitionType 

 that 
you are trying to use as predicate cannot be filtered on. Please check this 
table 

 for 
more details and fields that can be filtered on. You could instead filter 
on Criterion.type 

 = 
PRODUCT_PARTITION. Then you may need to post-process the response to find 
the UNIT among those. Please let me know if you have any additional 
questions. 

We are running an annual developer feedback survey. Please take opportunity 
to leave feedback  on 
how we can make managing campaigns at scale even easier.

Thanks,
Sreelakshmi, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/17dd8ce5-a4ac-422c-b4bd-7ea6cce7a3d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SelectorError.INVALID_PREDICATE_FIELD_NAME (Documentation Bug Report)

2016-12-19 Thread 'Anthony Madrigal' via AdWords API Forum
Hi Drew,

Thanks for bringing this to our attention. We will have the document 
updated as soon as we can.

Cheers,
Anthony
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a63bc774-5bc3-45d0-9439-e5018b02fff0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SelectorError.INVALID_PREDICATE_FIELD_NAME on 'Status' while filtering campaign using CampaignService.

2016-05-06 Thread 'Peter Oliquino' via AdWords API Forum
Hello,

You could use Campaign.status 

 field 
to filter the campaigns using the CampaignService 
.
 
Please check out below Java code to create the selector to filter the 
campaign using status field.

SelectorBuilder builder = new SelectorBuilder();
Selector selector = builder
.fields(CampaignField.Id, CampaignField.Name,CampaignField.Status)
.orderAscBy(CampaignField.Name)
.in(CampaignField.Status, "ENABLED", "PAUSED", "REMOVED")
.offset(offset)
.limit(PAGE_SIZE)
.build();

Please check out GetCampaigns 

, GetAdGroups 

 and GetTextAds 

 Java 
example code from the client library. Other languages example code could be 
found here .

Thanks,
Peter
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords 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 Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/56d5d5ed-6dfd-4738-9b97-70075b73a31e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.