Re: Retrieve and modify upgraded sitelinks with adwords api

2015-08-20 Thread Anash P. Oommen (AdWords API Team)
Hi Milo, You'd probably want to take a look at ExtensionSetting services; they are a simplified set of services on top of FeedServices that make working with extensions simple. https://developers.google.com/adwords/api/docs/guides/extension-settings has usage and examples. Cheers, Anash P. O

Re: Retrieve and modify upgraded sitelinks with adwords api

2015-08-19 Thread Milo Hou
Have there been any updates to sitelink removal or examples? Once a sitelink is removed how should i re-add it to a campaign? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsD

Re: Retrieve and modify upgraded sitelinks with adwords api

2014-10-24 Thread Kevin Moritz
Has the new v201409 AdWords API changed anything regarding campaign sitelink retrieval? Kevin On Wednesday, July 30, 2014 7:26:33 AM UTC-5, Anash P. Oommen (AdWords API Team) wrote: > > Hi Brian, > > Yep, unfortunately, we haven't changed the FeedServices after it was > launched, so the origin

Re: Retrieve and modify upgraded sitelinks with adwords api

2014-07-30 Thread Anash P. Oommen (AdWords API Team)
Hi Brian, Yep, unfortunately, we haven't changed the FeedServices after it was launched, so the original discussion still holds valid Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, July 28, 2014 1:24:50 AM UTC-4, Brian Moeskau wrote: > > Looking into how to retrieve sitelinks for camp

Re: Retrieve and modify upgraded sitelinks with adwords api

2014-07-27 Thread Brian Moeskau
Looking into how to retrieve sitelinks for campaigns -- is this answer still (after a year) the accepted way of doing this? Because if so, wow. This API needs some serious work. On Monday, July 15, 2013 9:08:33 PM UTC-5, james wrote: > > Have just started on this too. Here is my understanding:

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-10-07 Thread Francesco Della Vedova
Hi all...I'm trying to retrieve the site links as well, with the python library. I tried following the instructions in this thread but all I get is: adspygoogle.adwords.AdWordsErrors.AdWordsApiError: Fault occurred while processing. I tried providing FeedId when GETting from feeditemservice, I

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-08-26 Thread Alexandre Miyagi
Ok, I retrieve the adGroupFeeds but the matching function is null. So I can't retrieve the feeditemIds. am I missing something? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adw

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-08-13 Thread james
Yep, turns out it is a beta feature, and thus will only work for select developers. As described here https://groups.google.com/d/msg/adwords-api/zvMWOCQkLHY/iygu6cPl-eUJ First I've head of the limited access beta concept. It does say "This is a beta feature" on the API service page, but no war

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
Could it be that AdGroupFeedService.get(selector) is a beta feature? We get a beta error while trying to use it... when will it be accessible for normal usage? Am Donnerstag, 4. Juli 2013 16:54:56 UTC+2 schrieb gai-t...@etracker.de: > > Hello, > > we use Adwords API 201302 and we are wondering h

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
FYI: The campaign's matching function does already contain the feedItemIds (rhsOperator), so you can easily retrieve them. :-) Am Donnerstag, 4. Juli 2013 16:54:56 UTC+2 schrieb gai-t...@etracker.de: > > Hello, > > we use Adwords API 201302 and we are wondering how to retrieve and modify > u

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
We had some success. First we use FeedMappingService (without predicates) and if placeholdertype==1 we use FeedItemService and then we get every sitelinks with their attributes (like url and name) for every campaign. With CampaignFeedService we are able to retrieve all campaigns and their matchi

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
We tried without predicate too, but the result is still null - please help :-( Am Donnerstag, 4. Juli 2013 16:54:56 UTC+2 schrieb gai-t...@etracker.de: > > Hello, > > we use Adwords API 201302 and we are wondering how to retrieve and modify > upgraded sitelinks with the new FeedServices. > > If

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
Hello, I tried to implement it like you said. Requesting AttributeValues is only for testing, we just want to test that we can request Sitelinks in general. The campaign we use for testing has for sure upgraded sitelinks. Unfortunately, every time we start the request, the result is null (feed

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
Hello james! That sounds good!! I had a very different understanding of it - I thought, the CampaignFeedService was used for retrieving and modifying sitelinks on Campaign level and the AdGroupFeedService for retrieving and modifying sitelinks on adgroup level and I was starting to implement it

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread Anash P. Oommen (AdWords API Team)
Thanks James for clarifying, it is indeed true that if you don't check for PlaceHolderId, then you will get every type of ad extension for the campaign. (Yeah, I know, no code examples...) Cheers, Anash On Tuesday, July 16, 2013 7:38:33 AM UTC+5:30, james wrote: > > Have just started on this to

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-16 Thread gai-test-1
Cool! I did not see that yet, because I only have seen sitelinks on campaign level so far - thank you!! :-) Am Montag, 15. Juli 2013 18:47:33 UTC+2 schrieb Oliver: > > See the attached screenshot. The upper grid is for campaigns while the > lower one is for adgroups. > > > >

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-15 Thread james
Have just started on this too. Here is my understanding: Sitelinks are retrieved with the FeedItemService. That gives the sitelinks with all their data. But it also retrieves other types of FeedItems (phone numbers, offers, etc). You need to use the FeedMappingService to generically tell if a fe

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-15 Thread Oliver
See the attached screenshot. The upper grid is for campaigns while the lower one is for adgroups. Oliver On Monday, July 15, 2013 9:21:34 AM UTC+1, gai-t...@etracker.de wrote: > > Thanks

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-15 Thread gai-test-1
Thanks for your answer. In the web interface, how can I find out if sitelinks are created at AdGroup or Campaign level? Am Montag, 15. Juli 2013 09:05:46 UTC+2 schrieb Anash P. Oommen (AdWords API Team): > > Hi, > > Sitelinks can be created at AdGroup and Campaign levels - hence two > servic

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-15 Thread Anash P. Oommen (AdWords API Team)
Hi, Sitelinks can be created at AdGroup and Campaign levels - hence two services to deal with each case. Thanks for the feedback, I'll ask our techwriter to look into it. Cheers, Anash On Monday, July 15, 2013 12:18:57 PM UTC+5:30, gai-t...@etracker.de wrote: > > That is exactly what I meant.

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-14 Thread gai-test-1
That is exactly what I meant. The guide was really easy to find, but it did not help me to understand how to *retrieve and modify* sitelinks. Some small advice, maybe just in words - which Services do we need to use in which order - that would be so great and help so much, please! I am also con

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-11 Thread Anash P. Oommen (AdWords API Team)
Hi Oliver, Thanks for the feedback, I'll ask the team to work on it. Cheers, Anash On Wednesday, July 10, 2013 1:43:57 PM UTC+5:30, Oliver wrote: > > Hi Anash, > > The feeds guide Danial pointed out was easy to find but it covers only * > creating* new sitelinks. The enquirer was asking about *

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-10 Thread Oliver
Hi Anash, The feeds guide Danial pointed out was easy to find but it covers only * creating* new sitelinks. The enquirer was asking about *retrieving *and *modifying *existing sitelinks. The logic/model of feeds, at least for me, is a bit convoluted and not easy to reverse engineer the curren

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-09 Thread Anash P. Oommen (AdWords API Team)
Hi Oliver, You bring up an interesting point - You somehow didn't locate the guide on your own. I wonder, how could we have made this guide easier to locate? Cheers, Anash On Friday, July 5, 2013 12:23:43 PM UTC+5:30, Oliver wrote: > > There is very little documentation or code examples on how

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-09 Thread Danial Klimkin
Hello, Please see our Feeds guide: https://developers.google.com/adwords/api/docs/guides/feed-services we also have an example for each of our client libraries, see: https://developers.google.com/adwords/api/docs/clientlibraries -Danial, AdWords API Team. On Thursday, July 4, 2013 6:54

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-04 Thread Oliver
There is very little documentation or code examples on how to do this. I really hope the API team will soon add this info to the docs as we've requested it few times in the past. We have lots of examples of how to add sitelinks but nothing at all on how to read or modify them. And the way th

Re: Retrieve and modify upgraded sitelinks with adwords api

2013-07-04 Thread gai-test-1
Edit: I found this posting https://groups.google.com/forum/#!topic/adwords-api/RS4XA7A6ixw - Im not sure if we mean the same thing, but as far as I understand they are only talking of FeedItemService... maybe this is the service we need? I am not sure ... -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Retrieve and modify upgraded sitelinks with adwords api

2013-07-04 Thread gai-test-1
Hello, we use Adwords API 201302 and we are wondering how to retrieve and modify upgraded sitelinks with the new FeedServices. If we have a campaignId, how can we get all the Sitelinks for this campaignId including some more information like e.g. destinationUrl, displayText, campaignName, exte