Re: Destination url

2014-09-12 Thread Danial Klimkin
Hello Surayyo, You can enabled auto-tagging and use the click performance report: https://support.google.com/adwords/answer/1752125 But you may get better statistics by including Google Analytics on your site. This product is out of scope for this forum th

Re: Callout Extensions

2014-09-12 Thread Danial Klimkin
Hello GDZ, Not yet, but watch our blog for announcements! -Danial, AdWords API Team. On Thursday, September 11, 2014 11:25:51 PM UTC+4, GDZ wrote: > > Hello! > > Are Callout Extensions available for creation via API already? > > Thank you! > > GDZ >

Cannot fetch campaigns from test account

2014-09-12 Thread Albert Maranian Jr.
Hi, I can't figure out why the campaigns are not showing up when I'm testing example GetCampaigns.php page. Here's what I did: 1. Subscribed for a "production" account, Customer ID: 851-621-4555 2. Generated developer token from production account XX 3. Subscribed for a "test" account, Custom

Re: Adword Api 'No Campaign Found'

2014-09-12 Thread Albert Maranian Jr.
I have the same problem, the clientCustomerId is the "TEST" adwords account right? On Thursday, September 11, 2014 7:37:55 PM UTC+8, Danial Klimkin wrote: > > Hello Cynthia, > > > Please make sure you specify the correct clientCustomerId (CID). It looks > like you are making requests against an

Re: AuthorizationError.USER_PERMISSION_DENIED @ ; trigger:'

2014-09-12 Thread Albert Maranian Jr.
This is getting more confusing, so client ID and secret will actually need to be generated from the production account? I thought the developer token will only be needed from production? On Thursday, May 22, 2014 1:20:03 AM UTC+8, Josh Radcliff (AdWords API Team) wrote: > > Hi Prashant, > > Thi

Basic idea about How to start accessing the Adwords API data

2014-09-12 Thread Vandita Chhabaria
I have a normal Google Adword Account(Production), I have a MCC umbrella account and a Test account. I have requested access for Google Adword APi and have API token as well. I am using Visual studio with C# to develop a tool to access/import my company's Adword's Data and use local SQL Data to a

Re: Adword Api 'No Campaign Found'

2014-09-12 Thread Danial Klimkin
Hello Albert, The same applies. Test accounts can be MCC or non-MCC. You need to create a non-MCC account, this can be done via the UI: https://support.google.com/adwords/answer/1704399?hl=en#optional -Danial, AdWords API Team. On Friday, September 12, 2014 8:24:10 AM UTC+4, Albert Marani

Re: Cannot fetch campaigns from test account

2014-09-12 Thread Danial Klimkin
Hello Albert, What is the account ID you specified in the auth.ini file? If none, you are hitting an MCC account which can have no campaigns. If you are making a request against a non-MCC account, do you actually have any campaigns on it? You can create one via the UI or by running AddCampaig

Re: AuthorizationError.USER_PERMISSION_DENIED @ ; trigger:'

2014-09-12 Thread Josh Radcliff (AdWords API Team)
Hi, The clientId and clientSecret can come from any account, but we generally encourage people to use their production account for those so that when they want to switch over to issuing requests against their production AdWords account, all they have to change are the api.adwords.clientCustome

Re: Cannot fetch campaigns from test account

2014-09-12 Thread Albert Maranian Jr.
Hi Danial, Thank you for answering. I was using the "Main" test accounts customer ID instead of the "client" added for the campaigns. The clientCustomerId is the one on the upper left beside the My Clicent Center Dropdown http://screencast.com/t/IneybNs1sM. I hope this helps other beginners who

adgroupad status set to DISABLED really means adgroupad is DELETED (REMOVED) ...

2014-09-12 Thread BDCoder
Hello, Just some notes that may help others who are building a library of routines around the API... While testing I noted the following (which I cannot find documented anywhere in the API Reference)... Call #1: Using AdGroupAdService / AdGroupAdOperation.SET, I set the status field of an ad

How to test for a specifc API exception? ...

2014-09-12 Thread BDCoder
Using .Net API library: Is there any example that shows how to check for a specific Adwords API exception? For example, this exception code exists in the library: Google.Api.Ads.AdWords.v201406.AdGroupAdErrorReason.CANNOT_OPERATE_ON_REMOVED_ADGROUPAD Now, if I make a call to mutate an adgroup

Issues Changing ShoppingSetting for Campaigns

2014-09-12 Thread ptdang
I am trying to set the campaign's priority via the API it appears that it is not working correctly. I do not get an Error response and simple get back the current value (not my value) in the response. I am using the MutateJobService. It appears that the documentation says that it does yet suppo

Re: How to test for a specifc API exception? ...

2014-09-12 Thread BDCoder
Below is how I check the error reason code within an AdGroupAdError object returned by the API: If I am doing something wrong or there is a better (more efficient) way, please reply... Try ret_val = service.mutate( ... ) Catch aw_ex As Google.Api.Ads.AdWords.Lib.AdWordsApiException ' Get

Re: How to test for a specifc API exception? ...

2014-09-12 Thread BDCoder
Sorry -- previous reply had a logic error -- this works ... Try ret_val = service.mutate( ... ) Catch aw_ex As Google.Api.Ads.AdWords.Lib.AdWordsApiException ' Get the API exception ... Dim api_ex As ApiException = TryCast( aw_ex.ApiException, ApiException ) ' Set flag to indicate whe