Hello Vincent, Thank you for your reply. Do you have a sample code that I can based my code on? I am using PHP. But I will just convert your answer code to PHP. I will start from there. Thank you so much for answering, this would be very useful.
Ben On Tuesday, October 3, 2017 at 4:56:02 PM UTC+8, Vincent Racaza (AdWords API Team) wrote: > > Hi, > > You can use the 2nd screenshot (Display network tab) to check if the > changes to your bidModifier for placement was applied. You may also use the > "View history" if you want to check for the detailed change history of an > entity. > > Also, based on your second screenshot for the "listverse.com" placement, > your placement is under an ad group, therefore, you need to use the > BiddableAdGroupCriterion > <https://developers.google.com/adwords/api/docs/reference/v201708/AdGroupCriterionService.BiddableAdGroupCriterion> > of AdGroupCriterionService > <https://developers.google.com/adwords/api/docs/reference/v201708/AdGroupCriterionService> > in > setting the bidModifier > <https://developers.google.com/adwords/api/docs/reference/v201708/AdGroupCriterionService.BiddableAdGroupCriterion#bidmodifier>, > > and not the CampaignCriterion. You can refer to the sample SOAP request > below so you can emulate: > > <soapenv:Body> > <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201708"> > <operations> > <operator>SET</operator> > <operand xmlns:ns2=" > https://adwords.google.com/api/adwords/cm/v201708" xsi:type= > "ns2:BiddableAdGroupCriterion"> > <ns2:adGroupId>XXXXXXXXXXX</ns2:adGroupId> > <ns2:criterion xsi:type="ns2:Placement"> > <ns2:id>XXXXXXXXXXX</ns2:id> > <ns2:url>site.www.hello.com</ns2:url> > </ns2:criterion> > <ns2:bidModifier>1.5</ns2:bidModifier> > </operand> > </operations> > </mutate> > </soapenv:Body> > > Let me know if you have further clarifications. > > Thanks, > Vincent > 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. 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/939a523b-43aa-447d-a6d0-fe188b164297%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
