Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread dagr8anil
so something like this? Dim i As Integer = 0 For Each TargetList As TargetList In CampaignTargetPage.entries Log("GetAdwordsListingsV2009", "Campaign target of type = " & TargetList.TargetListType & " was found for campaign with ID = " & TargetList.campaignId) If TargetList.TargetListTyp

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread Peer Jakobsen (AdWords API Guru)
Each targetlist has a property called "targets" which contains the array of targets. This property is not available on the abstract TargetList class. It is only available on the specific types, e.g. GeoTargetList.targets: http://code.google.com/apis/adwords/v2009/docs/reference/CampaignTargetServi

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread dagr8anil
Maybe i explaining this wrong, I understand what you and the advisor are saying, that it will show all the target types associated using the selector. So if u r using the selector, and say a the selector pulls 1.AdScheduleTargetList 2. DemographicTargetList 3. GeoTargetList 4. Language

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread Peer Jakobsen (AdWords API Guru)
When it comes to GET then the only selector filter you can set are the campaignIds. There is no way to only receive one type of targets (e.g. geotargets). Also, there is no way to receive only one type of geotargets (e.g. cities). -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you mig

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread dagr8anil
Ahh i c. But lets say i just wanted to retrieve data for reporting purposes, is their anyway to get a particular campaigns targetlists types (Language, Geo, Demograhic) atrributes. Like for example, what if i wanted to receive a campaign's geotargetlist: CityTarget. Is that possible? I am sorry to

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread AdWords API Advisor
Hi, As Peer said, the limitation is that you cannot get *only* the GeoTargetList for a campaign. When using the CampaignTargetService you will always receive all the TargetLists for a campaign, which will always include the GeoTargetList. When performing a mutate however (using the SET operation

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread Peer Jakobsen (AdWords API Guru)
You can send whatever collection of targetlists in the mutate. Those targetlists can be for mulitple campaigns for the same mutate. You don't need to send all targetlists types (Language, Geo, Demograhic etc) at the same time. Let's say you want to update geotargets on 5 campaigns. In that case yo

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread dagr8anil
So just to reiterate what you said, we can only retrieve each campaign's targetlist. However, we can not retrieve a each campaign's geotargetlist. Does this also mean we can not access a particular campaign's: 1. AdScheduleTargetList 2. DemographicTargetList 3. GeoTargetList 4. Languag

Re: How to access a specific campaign's GeoTargetList targets

2010-04-20 Thread Peer Jakobsen (AdWords API Guru)
You will always receive all target types for the campaign. There is no way to get only the GeoTargets. Cheers -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you migrated to v200909 yet? The v13 sunset is on April 22, 2010. Also find us on our blog and discussion group: http://adwordsa

How to access a specific campaign's GeoTargetList targets

2010-04-19 Thread dagr8anil
is their anyway to get a specific campaign's GeoTargetList targets. ? Basically i access all the campaigns and use a selector to access the particular campaign's targets. But from there, i am having trouble accessing the geotarget list. is their any examples to access that data? Code Below -

How to access a specific campaign's GeoTargetList targets

2010-04-19 Thread dagr8anil
is their anyway to get a specific campaign's GeoTargetList targets. ? Basically i access all the campaigns and use a selector to access the particular campaign's targets. But from there, i am having trouble accessing the geotarget list. is their any examples to access that data? Code Below