Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-14 Thread Dzmitry Zahusta
Thank you all for your valuable help! Now it works! понедельник, 14 июля 2014 г., 16:44:40 UTC+3 пользователь Danial Klimkin написал: > > Hello Dzmitry, > > > This campaign (ID 187185795) is indeed set up correctly for Display. But > in the "Add vertical request" you are specifying an ad group

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-14 Thread Danial Klimkin
Hello Dzmitry, This campaign (ID 187185795) is indeed set up correctly for Display. But in the "Add vertical request" you are specifying an ad group that is not under this campaign. Please make sure to create the ad group under a proper campaign. -Danial, AdWords API Team. On Monday, July

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-14 Thread Dzmitry Zahusta
Yes, I believe that it should be so - but unfortunately I'm definitely creating Display campaign: DISPLAY I put all requests and responses on google drive so it can be checked понедельник, 14 июля 2014 г., 15:

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-14 Thread Danial Klimkin
Hello Dzmitry, Based on the documentation, "Use verticals to target or exclude placements in the Google Display Network based on the category into which the placement falls". https://developers.google.com/adwords/api/docs/reference/v201406/AdGroupCriterionService.Vertical The campaign you

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-12 Thread Dzmitry Zahusta
For example - 187185795 Also provide all the significant requests and responses here : пятница, 11 июля 2014 г., 21:53:26 UTC+3 пользователь Josh Radcliff (AdWords API Team) написал: > Hi, > > I just looked throu

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-11 Thread Josh Radcliff (AdWords API Team)
Hi, I just looked through all of the failed AdGroupCriterionService calls I could find from today and in every case, the related campaign was either *Search Network only* or *Search Network with Display Select*. Could you provide the campaign ID and ad group ID to which you were trying to add

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-11 Thread Dzmitry Zahusta
Hi! But actually my campaign is already DISPLAY campaign and I'm not using existing one: // Create campaign. Campaign campaign = new Campaign(); campaign.setAdvertisingChannelType(AdvertisingChannelType.DISPLAY); // Add campaign.

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-11 Thread Josh Radcliff (AdWords API Team)
Hi, Yes, sorry - typo on my part. The error you are now getting is due to the fact that *Vertical* criteria apply to *Display Campaigns*, but on *Search with Display Select* (search+) campaigns, AdWords manages all aspects of the Display side of the campaign for you. See the following AdWords

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-11 Thread Dzmitry Zahusta
Hi, Seems that you mean BiddableAdGroupCriterion: Vertical interest = new Vertical(); interest.setPath(new String[] {"Autos & Vehicles"}); interest.setVerticalId(47L); BiddableAdGroupCriterion criterion = new BiddableAdGroupCriterion(); criterion.setAdGro

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-10 Thread Josh Radcliff (AdWords API Team)
Hi, The CONCRETE_TYPE_REQUIRED error occurred because you created an instance of the base class AdGroupCriterion, but the API expects one of the concrete implementations (BiddableAdGroupCriterion or NegativeAdGroupCriterion). If you change your example from: AdGroupCriterionOperation operation

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-10 Thread Dzmitry Zahusta
Version of pom - 1.29.1, API - v201402, and I'm not using jaxws четверг, 10 июля 2014 г., 0:50:50 UTC+3 пользователь Josh Radcliff (AdWords API Team) написал: > > Hi, > > Are you using jaxws by any chance? If so, this may be the same issue > identified recently in github 20: > > https://github.c

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-09 Thread Josh Radcliff (AdWords API Team)
Hi, Are you using jaxws by any chance? If so, this may be the same issue identified recently in github 20: https://github.com/googleads/googleads-java-lib/issues/20 Also, could you let me know which *version* (v201309, v201402, or v201406) of the API you are using? Thanks, Josh, AdWords API T

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-07-08 Thread Dzmitry Zahusta
Would you be so kind to show your code? Because mine is not working - I'm always getting CONCRETE_TYPE_REQUIRED error. Vertical interest = new Vertical(); interest.setVerticalId(1252L); AdGroupCriterion criterion = new AdGroupCriterion(); criterion.setAdGroupId(a

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-01-24 Thread Josh Radcliff (AdWords API Team)
Hi, Are you using one of our client librariesor are you generating the SOAP requests manually? I just ran a check with the Java client library and was able to add a Vertical with verticalId 1252 to an ad group without any issues.

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-01-24 Thread Andrew Ambrosio
I noticed that we are using both Vertical.VerticalId and Vertical.Id, thanks for pointing that out. I got a different error now. CONCRETE_TYPE_REQUIRED I am using "statistics" as vertical for this test. I give 1252 as VerticalId. On Wednesday, January 22, 2014 2:50:21 AM UTC+8, Josh Radcliff (

Re: Vertical ID ADD returned as EntityNotFound.INVALID_ID

2014-01-21 Thread Josh Radcliff (AdWords API Team)
Hi, Could you confirm that you are passing Vertical.VerticalId, and *not *Vertical.Id