Re: Ad Id of removed ads

2017-03-14 Thread Eshwar Chettri
Error what I'am getting is faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server faultSubcode: faultString: [SelectorError.INVALID_PREDICATE_ENUM_VALUE @ serviceSelector; trigger:'REMOVED'] faultActor: faultNode: faultDetail:

Re: Ad Id of removed ads

2017-03-14 Thread Eshwar Chettri
Hi Vishal, I want the adcopy id of both exciting and removed ads of one selected ad group. Thank you, Eshwar. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/

Re: Ad Id of removed ads

2017-03-14 Thread Eshwar Chettri
Hi Vishal, I want ad ids of both exciting and removed ads. Thank you, Eshwar -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts

Locating MCC login with Google Client ID

2017-03-14 Thread ryan
@apiteam Our developer who set up our adwords api access is no longer with the company and we are trying to figure out which account he used to set up the MCC for our adwords API access. I'm the admin on the account so I should be able to get in once i know the right login, but I'm not sure

Re: Ad Id of removed ads

2017-03-14 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Eshwar, Could you please check via AdWords web interface if the ad group has deleted ads? If you plan to retrieve removed ads for all ad groups, could you please remove the first predicate from your selector and retry? If that doesn't help, could you please provide me with the SOAP XML

How to link AdWords to a specific GMB Business account

2017-03-14 Thread Kevin
Hi, A Google My Business account can have multiple "Business" accounts. Is it possible to configure AdWords to only sync location extensions from a specific "Business" account in a GMB? We are concerning that if a GMB account is used to manage location extensions for multiple merchants, a

Re: originAdId automatically populated when uploading HTML5 creatives

2017-03-14 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Dorian, Could you please share sample SOAP logs (request/ and response) of both the operations ? You may use '*Reply privately to author*' to reply just to me. Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

originAdId automatically populated when uploading HTML5 creatives

2017-03-14 Thread Dorian Kind
Hello, we are currently experimenting with HTML5 template ads. It seems that when you upload two ads in different campaigns with the exact same MEDIA_BUNDLE contents, this situation is detected by the Adwords API and the returned TemplateAd objects contain the ID of the first creative that was

Re: Shopping Performance Report returns same product twice

2017-03-14 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, To take a closer look at your issue, could you please *Reply privately to author* and share your report definition, a copy of the SHOPPING_PERFORMANCE_REPORT and you client customer Id? Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also

Re: Manage YouTube campaigns with CampaignService

2017-03-14 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Markus, Video campaigns are currently not supported by AdWords API services and are only available via Reports such as Video Performance Report . If you are looking for campaign level aggregated

Re: Problems getting information atributte average_cpc - Get Keyword idea class

2017-03-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Javier, Could you try the following to get the average CPC? $average_cpc = ($data[AttributeType::AVERAGE_CPC]->getValue() !== null) ? $data[AttributeType::AVERAGE_CPC]->getValue() : 0; The resulting attribute is a MoneyAttribute

Problems getting information atributte average_cpc - Get Keyword idea class

2017-03-14 Thread Javier Martinez
I have a problem getting averge_CPC attribute with Get keyword Ideas class. For each suggested keyword I try to request average_CPC. Result is an three arguments object. I only need microAmount value. Then I want to save it on other variable but I can,t. Log tells to me that I can't access to

Re: verticalId Could not denormalize object of type string[], no supporting normalizer found

2017-03-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Irene, Could you retry the request by setting just the VerticalId in the Vertical object and let me know if it works? If you still encounter the error, please enable logging and send over the SOAP request and response logs. Please use *Reply privately to author* when responding. Thanks,

Re: How get CustomerId of Manager with OAuth 2.0

2017-03-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Given a Google account, you can retrieve the AdWords accounts directly accessible by this account using CustomerService.getCustomers() method. To retrieve the CustomerId, you need to follow

verticalId Could not denormalize object of type string[], no supporting normalizer found

2017-03-14 Thread irene . arenas
Hi, I do not understand what happens. When I add VerticalId inside a batch, it returns me : "Could not denormalize object of type string[], no supporting normalizer found" I have this : $vertical = new Vertical(); $vertical->setCriterionType('Vertical'); $vertical->setPath(['News']);

Ad Id of removed ads

2017-03-14 Thread Eshwar Chettri
Hi, can we get the ad ids of both existing and removed ads using AdGroupAdService? I tried this but unable to get Ids of removed ads. Predicate idsPredicate = new Predicate(); idsPredicate.setField("AdGroupId");

Re: New campaign ids from change history

2017-03-14 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Eshwar, You can also filter multiple campaign status types by using the *.in *predicate instead of the *.equals *predicate as follows: Selector selector = builder .fields(CampaignField.Id, CampaignField.Name) .in(CampaignField.Status, "REMOVED" , "ENABLED", "PAUSED")

Re: Not getting the ImpressionReach

2017-03-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, The ImpressionReach field is not compatible with a few other fields in the Campaign Performance Report. Please ensure that there aren't any such conflicting fields in your report

Manage YouTube campaigns with CampaignService

2017-03-14 Thread Markus H.
Hi, the CampaignService currently doesn't support Video Campaigns. When will it be possible? Is there a timeline for it? Regards Markus -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/

Not getting the ImpressionReach

2017-03-14 Thread systemdwellar
Hello, I unable to read the ImpressionReach column in the Campaign Performance Report corresponds to "Unique cookies" in the UI. I am getting this error when i call the adwords api.

setVerticalId Could not denormalize object of type string[], no supporting normalizer found

2017-03-14 Thread irene . arenas
Hi, I do not understand what happens. When I add VerticalId inside a batch, it returns me : "Could not denormalize object of type string[], no supporting normalizer found" I have this : $vertical = new Vertical(); $vertical->setCriterionType('Vertical'); $vertical->setPath(['News']);

Shopping Performance Report returns same product twice

2017-03-14 Thread Firma Lemundo
Hi everyone, I am facing the following issue: I am using the SHOPPING_PERFORMANCE_REPORT to find the performance by the products (OfferId). I am not using Date or other segments and the product is only in a single adgroup. However, I still get two entries, because the product's ProductTypeL3

setVerticalId => Could not denormalize object of type string[], no supporting normalizer found

2017-03-14 Thread irene . arenas
Hi, I am trying to add verticalId, inside a batch, but it returns me Could not denormalize object of type string[], no supporting normalizer found Only fails if I add setverticalId. My code is: $vertical = new Vertical(); $vertical->setCriterionType('Vertical'); $vertical->setPath(['News']);

How get CustomerId of Manager with OAuth 2.0

2017-03-14 Thread deveopers gumption
How get Customer ID of Manager with OAuth 2.0 web flow in PHP. Now I wrote Manager customer ID by hand in adsapi_php.in file But I need Customer id of Manager at the time of Authorization. How I can get Customer Id of Manager? I am developing a dynamic application that used my many managers

Re: Rules for usage of new-for-v201609 campaignCriterionStatus field?

2017-03-14 Thread Robert Rodakowski
Thank you! W dniu czwartek, 9 marca 2017 05:42:31 UTC+1 użytkownik Nadine Sundquist (AdWords API Team) napisał: > > Hello Robert, > > There was an interesting discussion here amongst my teammates, so I'll > give you the summary. The UI was simplified because from the perspective of > a UI

Re: List of GDN Topics in Japanese?

2017-03-14 Thread 'Peter Oliquino' via AdWords API Forum
Hi Steven, The Topics (Verticals ) supported by the AdWords API are currently only available in English. We have no information if and when it can be available in other languages. I would recommend that you follow our blog

Re: URL Check programmatically similar UI

2017-03-14 Thread 'Peter Oliquino' via AdWords API Forum
Hi Alex, The above features you mentioned are currently not supported via the AdWords API. You may follow our blog for any future updates or announcements regarding this features. As for what is available with the AdWords API,

List of GDN Topics in Japanese?

2017-03-14 Thread クワ T
Hi I found a list of GDN topics in English here: https://support.google.com/adwords/answer/156178/?hl=en=1 Is it possible to get a list of these topics in Japanese through the API? (Something similar to the LocationCriterionService where we can set the language) -- --