Re: Forecasting CPC costs

2015-03-31 Thread Nadine Sundquist (AdWords API Team)
Hello George, If you are using the *AdWords API*, I would recommend reading through our guide for estimating traffic and cost. For more general questions that aren't specific to the API, we have some great exp

Re: How get CustomerId with OAuth 2.0

2015-03-31 Thread Nadine Sundquist (AdWords API Team)
Hello Marcin, Once you've authenticated, you can retrieve the current customer id from the Customer Service . The Customer

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Nadine Sundquist (AdWords API Team)
Hi Marcin, If you don't put a clientCustomerId in your web.config, then the clientCustomerId passed back from the Customer object is the clientCustomerId related to your OAuth credentials. Based on your explanation and the error that is being returned, it sounds like you may be trying to acces

Re: How get CustomerId with OAuth 2.0

2015-04-01 Thread Nadine Sundquist (AdWords API Team)
( > > Thank you! > > W dniu środa, 1 kwietnia 2015 18:32:01 UTC+2 użytkownik Nadine Sundquist > (AdWords API Team) napisał: >> >> Hi Marcin, >> >> If you don't put a clientCustomerId in your web.config, then the >> clientCustomerId passed back from

Re: Adding Bulk Campigns, AdGroups and Keywords

2015-04-02 Thread Nadine Sundquist (AdWords API Team)
Hello, The Adwords API does not have the ability to roll back successful operations or create nested operations. However, the AdWords API does support a feature called Partial Failure where you can submit a collection of o

Re: How get CustomerId with OAuth 2.0

2015-04-02 Thread Nadine Sundquist (AdWords API Team)
Hello, Once you issue the line of code, your *oAuth* (OAuth2ProviderForApplications) instance will be populated with a refresh token. oAuth.FetchAccessAndRefreshTokens(Request.Params["code"]); You can try accessing the refresh token and setting it in the *config* (AdWordsAppConfig) before m

Re: is posible to geo traget campaign to post code of country and range in KM ?

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hello Haresh, The Location targeting guide provides general examples on how to target locations by region (including postal code). You will need to: - Look up the location id

Re: How get CustomerId with OAuth 2.0

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hi Marcin, Let me recap the process that you're following. It should be this: 1. Follow the OAuth2 ASP.NET code example on how to do an OAuth2 flow and capture the access and refresh token. 2. Set the access and refresh token to user.Config dynamically at runtime and call CustomerSe

Re: Lifetime of a refresh token

2015-04-03 Thread Nadine Sundquist (AdWords API Team)
Hi, Our OAuth 2.0 Authentication guide provides information on access and refresh tokens. An OAuth 2.0 refresh token does not expire. Refresh tokens are valid until the user revokes access. Regards

Re: access token not getting refreshed after updating to V201502

2015-04-14 Thread Nadine Sundquist (AdWords API Team)
Hi Seth, I would recommend checking to make sure that your refresh token has not become invalid. Here are a few reasons why a refresh token may become invalid: - The refresh token expires after being unused for 6 months. - The refresh token limit per user per application has been reached.

Re: Filter out only closely related keyword ideas

2015-04-14 Thread Nadine Sundquist (AdWords API Team)
Hi Veso, You are going in the right direction. Make sure to send both *RelatedToQuerySearchParameter* and *IdeaTextFilterSearchParameter *at the same time in the request as shown in this forum post . We have a Python code ex

Re: AdWords Report Types API

2015-04-16 Thread Nadine Sundquist (AdWords API Team)
Hello Saif, To get a list of all the report types from the Adwords API, there is an enum called ReportDefinition.ReportType . For more detailed information on all the report ty

Re: get campaign ip exclusions with api

2015-04-16 Thread Nadine Sundquist (AdWords API Team)
Hi Andras, In the PHP CampaignCriterionService, there is a get($selector) function that will allow you to filter the list of CampaignCriterion based on fields such as *Cri

Re: get campaign ip exclusions with api

2015-04-17 Thread Nadine Sundquist (AdWords API Team)
) > > ) > > [bidModifier] => > > [forwardCompatibilityMap] => > > [CampaignCriterionType] => NegativeCampaignCriterion > > [_parameterMap:Campaig

Re: ValueTrack and demographics

2015-04-17 Thread Nadine Sundquist (AdWords API Team)
Hi Justin, No, demographics information is not available with ValueTrack. If your ad is on the Display Network, you can get aggregate information about gender and age. Cheers, Nadine, AdWords API Team On Friday, April 17, 2015 at 4:21:

Re: Problem Adding Campaign Criterion for Proximity Targeting

2015-04-27 Thread Nadine Sundquist (AdWords API Team)
Hi Mathew, Check out the Proximity address field in our documentation. The field requires an Address

Re: How to get developer token for googleads api ?

2015-04-28 Thread Nadine Sundquist (AdWords API Team)
Hi Ajay, Check out our page on Signing up for the AdWords API to get started. Thanks, Nadine, AdWords API Team On Tuesday, April 28, 2015 at 6:20:13 AM UTC-4, Ajay Pratap wrote: > > please help me > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Which Service will allow me to create bid adjustments based on location?

2015-04-28 Thread Nadine Sundquist (AdWords API Team)
Hi Yehoshaphat, In CampaignCriterion , there is a bidModifier fi

Re: OfflineConversionError.INVALID_CONVERSION_TYPE error when trying to upload an offline conversion

2015-04-28 Thread Nadine Sundquist (AdWords API Team)
Hello Oleg, Check out these validation rules for importing conversions to see if your conversion falls into one these cases. Cheers, Nadine, AdWords API Team On Monday, April 27, 2015 at 4:47:20 P

Re: T&C Error

2015-04-28 Thread Nadine Sundquist (AdWords API Team)
Hi Mark, I checked on your application. Even though you've accepted the Terms and Conditions, your application is still in PENDING state. Please contact our API Compliance Team via this form to get an update. They respond within one business d

Re: Dynamic remarketing for rentals

2015-04-29 Thread Nadine Sundquist (AdWords API Team)
Hi Tom, If you would like to keep the same ad, but you would like the price to change over time, check out a feature called Ad Customizers . Ad Customizers allow you to put a placeholder in the ad for price. You can then dyn

Re: Re markerting list with managed campaign

2015-04-29 Thread Nadine Sundquist (AdWords API Team)
Hi Mohit, To target a specific remarketing list using placements, check out our guide on Targeting user lists . The BiddableAdGroupCriterion

Re: New OAuth 2.0 Scope for the AdWords API

2015-04-29 Thread Nadine Sundquist (AdWords API Team)
Hi Gilad, Using a username/password is not an option with the AdWords API. We rely on OAuth 2.0 Authentication to keep your data safe. Cheers, Nadine, AdWords API Team On Wednesday, April 29, 2015 at 2:54:39 PM UTC-4, Gi

Re: New OAuth 2.0 Scope for the AdWords API

2015-04-30 Thread Nadine Sundquist (AdWords API Team)
n Wednesday, April 29, 2015 at 11:29:17 PM UTC+3, Nadine Sundquist > (AdWords API Team) wrote: >> >> Hi Gilad, >> >> Using a username/password is not an option with the AdWords API. We rely >> on OAuth 2.0 Authentication >> <https://developers.google.c

Re: I want to get fake data, when I do request to a test MCC to check the reporting. How?

2015-04-30 Thread Nadine Sundquist (AdWords API Team)
Hello, We have a guide on testing reporting with test accounts . You'll have to create a file that stores the data for the report. From the UI, there is an option of downloading data (if you have a prod

Re: Ad type MOBILE_AD seems to be incorrectly reported as TEXT_AD

2015-04-30 Thread Nadine Sundquist (AdWords API Team)
Hi Axel, The line that you're looking for is called devicePreference . We current have 3 different platforms . devicePrefer

Re: How to add an ad into the ad group???

2015-05-01 Thread Nadine Sundquist (AdWords API Team)
Hello Jason, Check out our client libraries where we have examples in multiple languages for adding text ads. You'll find the example for adding text ads under the *basicoperations* folder. If Java is your programming language, t

Re: Ad type MOBILE_AD seems to be incorrectly reported as TEXT_AD

2015-05-01 Thread Nadine Sundquist (AdWords API Team)
ermeil wrote: > > Of course. My mistake. > > Is there any way to get this device preference as an attribute from the > AD_PERFORMANCE_REPORT? > > Thanks for your help! > > On Thursday, April 30, 2015 at 3:22:16 PM UTC-4, Nadine Sundquist (AdWords > API Team) wrote

Re: How to add an ad into the ad group???

2015-05-01 Thread Nadine Sundquist (AdWords API Team)
Hi Jason, In the Client Library examples , check out the template ad example on adding a click to download ad

Re: Adwords API PHP function to track the compaign details

2015-05-01 Thread Nadine Sundquist (AdWords API Team)
Hi Monika, The Campaign Performance Report provides *TotalCost* and the ability to segment by *Date*. By using the *CampaignId* attribute, you can narrow down which campaigns you need to query. In our Client Librarie

Re: "Google Analytics column titles have been updated to match the Adwords user interface" 201502 migration

2015-05-04 Thread Nadine Sundquist (AdWords API Team)
Hello Kristopher, Google Analytics provides information about user interaction with your business. It also has an API to retrieve reports. Check out AdWords in Google Analytics

Re: Block ip range

2015-05-05 Thread Nadine Sundquist (AdWords API Team)
Hello Rudy, Check out the forum post on blocking IP addresses in bulk. Best, Nadine, AdWords API Team On Tuesday, May 5, 2015 at 3:32:42 AM UTC-4, r...@e-socele.com wrote: > > Hello > I wish I could block multiple ip with A

Re: Invalid version even after updating the API version

2015-05-05 Thread Nadine Sundquist (AdWords API Team)
Hello, Could you send me the clientCustomerId of one of the accounts that is failing? Are you using one of our client libraries ? Thanks, Nadine, AdWords API Team On Tuesday, May 5, 2015 at 4:48:59 AM UTC-4, bionic wrote: > > I

Re: IPv6 Exclusion

2015-05-07 Thread Nadine Sundquist (AdWords API Team)
Hello Dorian, I'm looking into this and will get back to you. If you get a chance to test it before I have the answer for you, I would like to hear about the outcome. Best, Nadine, AdWords API Team On Wednesday, May 6, 2015 at 11:40:28 AM UTC-4, Dorian Kind wrote: > > Hi there, > > Just out of

Re: Error Bad Gateway (and others) most of time since this morning

2015-05-07 Thread Nadine Sundquist (AdWords API Team)
Hello Pierre, Check out this post to see if the solutions provided there will fix you problem. Thanks, Nadine, AdWords API Team On Thursday, May 7, 2015 at 11:33:02 AM UTC-4, Pierre Augereau wrote

Re: Keyword Match Types

2015-05-12 Thread Nadine Sundquist (AdWords API Team)
Hello, To return JUST the information of the keyword that you pass in, you can still use the TargetingIdeaService . In the TargetingIdeaSelector

Re: Keyword Match Types

2015-05-13 Thread Nadine Sundquist (AdWords API Team)
Hi Veselin, To mimic the *Only show ideas closely related to my search terms *functionality in the API, you need to use both RelatedToQuerySearchParameter and IdeaTextFilterSear

Re: Real Time Changing Of Ads

2015-05-14 Thread Nadine Sundquist (AdWords API Team)
Hi Mike, Check out Ad Customizers for your text ads. This is a cool feature that allows the substitution of text to provide real-time data such as a countdown timer, inventory quantities, and product names. Dynamic Remark

Re: What effect will trackingUrlTemplate have on a standard campaign?

2015-05-19 Thread Nadine Sundquist (AdWords API Team)
Hi Hans, The tracking template on a campaign should be used, regardless of whether the campaign is set to *Standard* or *All features*. The *Standard* versus *All features* option is a UI-only concept, and is simply used to control which options are visible in the UI for a given campaign. Best

Re: reported Gender/AgeRange state is inconsistent with Adwords UI

2015-05-22 Thread Nadine Sundquist (AdWords API Team)
Hi Salman, Yes, that is the correct field for getting the criterion status. Based on the current state of your account, it looks like it should be reporting back ENABLED. Thanks for bringing this to our attention. I'll have someone take a look into it. Cheers, Nadine, AdWords API Team On Frid

Re: Google report data mismatch

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hello, Due to a temporary issue, automated reports downloads in AdWords incorrectly reported certain stats between Thursday, 21 May 2015 12:52 PM and Saturday, 23 May 2015 12:22 AM Pacific Daylight Time. The issue has now been fixed, and you will see correct stats if you download those reports

Re: Failed to create MobileImageAd, file_too_large

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hi Branko, The* MobileImageAd*s have a different maximum size than the *ImageAd*s. Check out our page on maximum image sizes . At the bottom of the page, you'll see the maximum for mobile image ads. For a 320x50 mobile image ad, the

Re: How to get Tracking status, Repeat rate, Tracking event by using ConversionTrackerService ?

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hello, If you would like to get historical information on conversions, then check out our reports page. Many of the performance reports have conversion metrics. Best, Nadine, AdWords API Team On Sunday, May 24, 2015 at 10:24:35

Re: Dynamic Search Ads missing in Ad Performance Report

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hello, This is quite an old thread. Please start a new thread with your question. Thanks, Nadine, AdWords API Team On Tuesday, May 19, 2015 at 1:59:08 PM UTC-4, rmarsh...@whitepages.com wrote: > > I feel like I'm blind here. I don't see device category on either of the > keywordless reports vi

Re: Spliting desktop and mobile URLs while upgrading

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hi Santhos, Check out our Migration to Upgraded URLs guide for rules that you should follow when upgrading. There are also code examples available in the guide. Without tracking params, it will be much simpler to

Re: Reports dont match UI

2015-05-26 Thread Nadine Sundquist (AdWords API Team)
Hello Justin, Due to a temporary issue, automated reports downloads in AdWords incorrectly reported certain stats between Thursday, 21 May 2015 12:52 PM and Saturday, 23 May 2015 12:22 AM Pacific Daylight Time. The issue has now been fixed, and you will see correct stats if you download those r

Re: How to get Tracking status, Repeat rate, Tracking event by using ConversionTrackerService ?

2015-05-27 Thread Nadine Sundquist (AdWords API Team)
tion of conversion webpage? (by > *ConversionTrackerService*) > > 4. *Conversion value option* > > How to get value options: “*Each time it happens, the conversion has the > same value*”, “*The value of this conversion action may vary (for > instance, by purchase price*”, and

Re: Google report data mismatch

2015-05-27 Thread Nadine Sundquist (AdWords API Team)
there is still a slight mismatch > in number of clicks. This is essential as Cost also varies depending on > clicks. The number varies depending on the size of the account. > > On Tuesday, May 26, 2015 at 10:23:46 PM UTC+5:30, Nadine Sundquist > (AdWords API Team) wrote: >&

Re: Error Bad Gateway (and others) most of time since this morning

2015-05-27 Thread Nadine Sundquist (AdWords API Team)
Hi Pierre, I don't believe that you are having rate limit issues because you would be getting an error if you had hit the rate limit. Does the request succeed if you try again? If you're getting back a request ID in your error

Re: Multiple operations with CampaignExtensionSetting Srevice

2015-05-28 Thread Nadine Sundquist (AdWords API Team)
Hello Rothana, There shouldn't be any issues with sending in multiple operations. Could you please send me your privately your customer ID? If you also have the full SOAP response, that would be helpful as well. That way, I can try to find the root cause of the error. Thanks, Nadine, AdWords

Re: How to get Tracking status, Repeat rate, Tracking event by using ConversionTrackerService ?

2015-05-28 Thread Nadine Sundquist (AdWords API Team)
detail explain for me? > > 3. Tracking event > > I try to switch 2 options *Click *and *Page load, *but when using API to > get data. I don't identity what field matching with *Click *and *Page *load > options. > > 4. Conversion value option > > *This problem is re

Re: Error Bad Gateway (and others) most of time since this morning

2015-05-29 Thread Nadine Sundquist (AdWords API Team)
Hi Pierre, If you are not getting back a request ID, this means that the failed requests are not making it to our servers. In that case, I can't troubleshoot from our side. You may need to sit down with a network administrator to trace the failed requests. Best, Nadine, AdWords API Team On

Re: Can't select both Amount and TotalBudget

2015-05-29 Thread Nadine Sundquist (AdWords API Team)
Hi, It looks like you are doing everything correctly. A quick check on our end shows that the two fields are pointing to the same data on the back-end. I'm having someone take a look to see if this is an issue or if this is documentation that needs to be updated. Cheers, Nadine, AdWords API Te

Re: Add Experiment & set Bid Multiplier for Max. CPC

2015-06-01 Thread Nadine Sundquist (AdWords API Team)
Hi Sany, It sounds like you're trying to solve two problems. I've broken down the answer into parts. *Part 1: Find the keyword by adnetworktype2.* Information regarding targeting based on *Google Search *or *Search partners* is based on the NetworkSetting

Re: AD_EXTENSIONS_PERFORMANCE_REPORT

2015-06-02 Thread Nadine Sundquist (AdWords API Team)
Hello Sandeep, All of these extensions can be removed using the CampaignExtensionSettingsService . Check out the example on updating an ad extension

Re: REMOVE FEED ITEM

2015-06-02 Thread Nadine Sundquist (AdWords API Team)
Hello, If you're using the new Extension Settings feature, these extensions can be removed using the CampaignExtensionSettingsService

Re: Lots of 502 bad gateway errors

2015-06-03 Thread Nadine Sundquist (AdWords API Team)
Hello Ashley, I took a look at the errors on our servers. I'm not seeing anything unusual that could cause gateway issues. If your SOAP response does not have a *requestId*, then the request may not have even made it to our servers. I would recommend checking with your network administrator to

Re: AD_EXTENSIONS_PERFORMANCE_REPORT

2015-06-04 Thread Nadine Sundquist (AdWords API Team)
Hello, In the PLACEHOLDER_FEED_ITEM_REPORT documentation , you'll see a description for each field called *Supports Zero Impressions*. If you only pick fields with that value set to *true*, and you se

Re: Add Experiment & set Bid Multiplier for Max. CPC

2015-06-04 Thread Nadine Sundquist (AdWords API Team)
Hello Sany, Could you please start a new thread with this question? I don't want to overload this thread with too many topics. Thanks, Nadine, AdWords API Team On Thursday, June 4, 2015 at 1:52:29 AM UTC-4, Sarah Riddell wrote: > > Hi Nadine, > > Many Thanks for your reply , i have fixed above

Re: Lots of 502 bad gateway errors

2015-06-04 Thread Nadine Sundquist (AdWords API Team)
dwords.google.com > Content-Length > 1106 > Accept-Encoding > gzip, deflate > > Request: > > > https://adwords.google.com/api/adwords/cm/v201409";> > AccountDescriptiveName > AccountCurrencyCode > AccountTimeZoneId > I

Re: Preview Template Ads Urls

2015-06-04 Thread Nadine Sundquist (AdWords API Team)
Hi David, The adsAsImage field is the correct location when looking for the image. Another place you can look is in the templateElements

Re: Preview Template Ads Urls

2015-06-05 Thread Nadine Sundquist (AdWords API Team)
fr/&destinationUrl=http://www.boutiquevignoblesdelarose.fr/&isExpandable=false&irsKey=1170683329846968320&hl=fr&ad=63850277414&adGroup=17297669054&ocid=8948014046&s=14&showMulPreview=true&deviceType=0&isInApp=false&sig=ACiVB_xHtTy2ie

Re: Can't select both Amount and TotalBudget

2015-06-05 Thread Nadine Sundquist (AdWords API Team)
Hello, I don't have an answer, yet. It's still being looked into by our engineers. Best, Nadine, AdWords API Team On Friday, June 5, 2015 at 9:38:02 AM UTC-4, tu...@intelligentmobils.com wrote: > > Hello, > > are there any news on this? Or is this still being looked into? > -- -- =~=~=~=~=~=

Re: Cannot get AdParamService to update AdParams

2015-06-05 Thread Nadine Sundquist (AdWords API Team)
Hello Giles, I took a look into the issue, and I have an explanation as to why you were still seeing the old value. I retrieved all the ad parameters from your AdGroup using the API. I've listed them here. Only one keyword has the new value that you requested. All the other parameters still ha

Re: Lots of 502 bad gateway errors

2015-06-08 Thread Nadine Sundquist (AdWords API Team)
Hi Ashley, There are no updates, yet. I'll let you know as soon as I hear anything. Thanks, Nadine, AdWords API Team On Saturday, June 6, 2015 at 12:50:23 PM UTC-4, Ashley Xu wrote: > > Hi, > > Did we have any update on this? We are still seeing the issue but it just > happened less frequently.

Re: Preview Template Ads Urls

2015-06-08 Thread Nadine Sundquist (AdWords API Team)
Cheers > > David > > > Le vendredi 5 juin 2015 16:38:37 UTC+2, Nadine Sundquist (AdWords API > Team) a écrit : >> >> Hello David, >> >> I decided to give this a try in a test account to verify that I could >> somehow get an image back through the AP

Re: Lots of 502 bad gateway errors

2015-06-09 Thread Nadine Sundquist (AdWords API Team)
oad external entity \"https:\/\/adwords.google.com >> \/api\/adwords\/cm\/v201502\/AdGroupService?wsdl > > > Is this error possibly related? > > Thanks, > > On Monday, June 8, 2015 at 10:46:47 AM UTC-7, Nadine Sundquist (AdWords > API Team) wrote: >>

Re: Lots of 502 bad gateway errors

2015-06-12 Thread Nadine Sundquist (AdWords API Team)
Hello Ashley, I've been monitoring the progress on this, and you should have seen a significant improvement throughout the week. Cheers, Nadine, AdWords API Team On Monday, June 8, 2015 at 1:46:47 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hi Ashley, > > The

Re: Multiple operations with CampaignExtensionSetting Srevice

2015-06-12 Thread Nadine Sundquist (AdWords API Team)
Hi Rothana, Were you able to get this figured out? Best, Nadine, AdWords API Team On Thursday, May 28, 2015 at 4:27:22 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hello Rothana, > > There shouldn't be any issues with sending in multiple operations. Could > you

Re: How to get Tracking status, Repeat rate, Tracking event by using ConversionTrackerService ?

2015-06-12 Thread Nadine Sundquist (AdWords API Team)
t; > Thanks for your support! > > > On Friday, May 29, 2015 at 7:53:17 AM UTC+7, Nadine Sundquist (AdWords API > Team) wrote: >> >> Hello, >> >> To get this all this information from the *ConversionTrackerService* >> requires combining multiple fi

Re: Sitelinks and Upgraded URLs - Feed and Feed Mapping Modifications Announcement

2015-06-15 Thread Nadine Sundquist (AdWords API Team)
Hi Stacie, The changes to your data made by our engineers regarding our recent announcement are complete. You should see the changes immediately. There isn't a way to opt out as these changes have al

Re: How to get changed inventory of dimension Shopping campaign

2015-06-15 Thread Nadine Sundquist (AdWords API Team)
Hello, I'll need a few more details to get a better understanding of what may be happening. Could you send the SOAP XML requests and responses of both v201409 and v201502 *only to me *by clicking *Reply privately to author*? Thanks, Nadine, AdWords API Team On Friday, June 12, 2015 at 4:25:52

Re: Getting java.lang.ArrayStoreException when trying to create ProductPartitionTree in Java Api Client

2015-06-15 Thread Nadine Sundquist (AdWords API Team)
Hi Chandra, Thanks for brining this up. I'm having someone take a look at this. I'll post back here when I have news. Cheers, Nadine, AdWords API Team On Monday, June 15, 2015 at 12:52:46 PM UTC-4, chandra sekhar tammana wrote: > > Hi , > >i am getting a Strange exception when i am trying t

Re: How to remove the Main Sitelink Feed from Shared Library

2015-06-16 Thread Nadine Sundquist (AdWords API Team)
Hello, It sounds like you're trying to do this through the AdWords user interface. If so, please post this question on the AdWords forum . Thanks, Nadine, AdWords API Team On Tuesday, June 16, 2015 at 9:47:03 AM UTC-4, balachanda...@paragondigitalservice

Re: Website call conversion using forrwarding number

2015-06-16 Thread Nadine Sundquist (AdWords API Team)
Hello, You'll want to post this question on the AdWords forum rather than the AdWords API forum as it isn't directly related to the API. In the meantime, I can at least get you started with a list of possible issues

Re: How can i load an HTML5 ad using cookie or gather plain information from the user (adding up exposures or etc)

2015-06-16 Thread Nadine Sundquist (AdWords API Team)
Hi, This error sounds like a fairly generic error that you would get from JavaScript, which is not something you would get from the API. If you're interacting with the AdWords user interface rather than the AdWords API, I would recommend posting your question on the AdWords forum

Re: Getting java.lang.ArrayStoreException when trying to create ProductPartitionTree in Java Api Client

2015-06-16 Thread Nadine Sundquist (AdWords API Team)
Hello Chandra, The fix for this issue will be available within the next couple of weeks in the v201506 release of the Java client library <https://github.com/googleads/googleads-java-lib>. Best, Nadine, AdWords API Team On Monday, June 15, 2015 at 4:45:10 PM UTC-4, Nadine Sundquist (A

Re: Editorial Review / Using API to migrate to Upgraded URL

2015-06-16 Thread Nadine Sundquist (AdWords API Team)
Hi P-A, Check out our guide on migrating to upgraded URLs . There's a section in that guide that explains how to migrate without triggering a review. Cheers, Nadine, AdWords API Team On Tuesday, Jun

Re: Synchronising Product Partitions - InternalApiError.UNEXPECTED_INTERNAL_API_ERROR

2015-06-17 Thread Nadine Sundquist (AdWords API Team)
Hi John, I'll need to dig a little deeper to find the root of the issue. Please click *Reply privately to author* and send your failed SOAP XML request *only to me*. I want to narrow down which AdGroupCriterion could be causing this error. Thanks, Nadine, AdWords API Team On Wednesday, June

Re: Syntax error when inserting onClick tag

2015-06-17 Thread Nadine Sundquist (AdWords API Team)
Hi Alex, I wish I didn't have to redirect you further, but this forum only deals with questions directly related the AdWords API . I would recommend posting to the Tracking and Reporting AdWords forum

Re: Upgraded Urls: Can not migrate Ads with german Umlauts (öäüß) in final url

2015-06-18 Thread Nadine Sundquist (AdWords API Team)
Hi Thomas, I'm looking into this issue further. I'll get back to you as soon as I have news. Cheers, Nadine, AdWords API Team On Thursday, June 18, 2015 at 9:34:17 AM UTC-4, Thomas Moormann wrote: > > Hi, > > we are currently migrating our Adwords Accounts by using the upgrade URL > function o

Re: reported Gender/AgeRange state is inconsistent with Adwords UI

2015-06-24 Thread Nadine Sundquist (AdWords API Team)
nt meaning. Best, Nadine, AdWords API Team On Monday, May 25, 2015 at 11:00:01 AM UTC-4, Salman Hoseini wrote: > > Ok thanks for the update. > > On Friday, May 22, 2015 at 6:31:58 PM UTC-4, Nadine Sundquist (AdWords API > Team) wrote: >> >> Hi Salman, >> >&g

Re: Upgraded Urls: Can not migrate Ads with german Umlauts (öäüß) in final url

2015-07-01 Thread Nadine Sundquist (AdWords API Team)
96%25C3%259C%25C3%2584%25C3%259F> Thanks, Nadine, AdWords API Team On Thursday, June 18, 2015 at 7:38:32 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hi Thomas, > > I'm looking into this issue further. I'll get back to you as soon as I > have news. > >

Re: Upgraded Urls: Can not migrate Ads with german Umlauts (öäüß) in final url

2015-07-01 Thread Nadine Sundquist (AdWords API Team)
Hi Thomas, We've already given this a try, and it is not a workaround. The API engineers are now looking into it. I'll contact you when I have news. Cheers, Nadine, AdWords API Team On Wednesday, July 1, 2015 at 1:23:34 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > &

Re: Weird Sitelink feed definition and mapping

2015-07-06 Thread Nadine Sundquist (AdWords API Team)
Hi, Check out this blog post on Easier Upgraded URL migration with Feed and FeedMapping modifications . A few weeks ago, the sitelinks on the back-end were modified by our team to help you skip the ap

Re: Weird Sitelink feed definition and mapping

2015-07-07 Thread Nadine Sundquist (AdWords API Team)
8:14 PM UTC-5, mm wrote: >> >> Hey Nadine - >> Yeah, I noticed my other feeds were auto-modified, but this feed was >> modified differently. The final url fields were of type URL rather than >> URL_LIST (every other feed appears to use URL_LIST), and the mappi

Re: Changed behavior re date fields and zero impressions

2015-07-07 Thread Nadine Sundquist (AdWords API Team)
Hello, Thanks for pointing this out. The behavior you're showing and the documentation definitely don't match. I'll talk to the engineers to see what the intended behavior is, and I'll get back to you as soon as I have news. Best, Nadine, AdWords API Team On Tuesday, July 7, 2015 at 8:43:06

Re: Changed behavior re date fields and zero impressions

2015-07-07 Thread Nadine Sundquist (AdWords API Team)
see if things behave as expected? Thanks, Nadine, AdWords API Team On Tuesday, July 7, 2015 at 1:34:01 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hello, > > Thanks for pointing this out. The behavior you're showing and the > documentation definitely don

Re: Changed behavior re date fields and zero impressions

2015-07-08 Thread Nadine Sundquist (AdWords API Team)
;> With the Keywords Performance Report, you need to have at least one field >> with the *Behavior *of type *Metric* such as the Impressions >> <https://developers.google.com/adwords/api/docs/appendix/reports/keywords-performance-report#impressions> >> field. >> Can

Re: Changed behavior re date fields and zero impressions

2015-07-08 Thread Nadine Sundquist (AdWords API Team)
surely it is a solution :) > > Also note that the source code at https://github.com/googleads hasn't > been updated to the latest version, which creates some potential for > confusion. > > On Wednesday, July 8, 2015 at 4:30:11 PM UTC+2, Nadine Sundquist (AdWords > API Team) wrote:

Re: Multiple operations with CampaignExtensionSetting Srevice

2015-07-09 Thread Nadine Sundquist (AdWords API Team)
> > On Friday, June 12, 2015 at 8:37:04 PM UTC+7, Nadine Sundquist (AdWords > API Team) wrote: >> >> Hi Rothana, >> >> Were you able to get this figured out? >> >> Best, >> Nadine, AdWords API Team >> >> On Thursday, May 28,

Re: Problems with Location extensions

2015-07-09 Thread Nadine Sundquist (AdWords API Team)
Hello Mirek, Thanks for the detailed description and output. I looked up the description of the error, and it says: - Location CampaignFeeds cannot be created unless there is a lo

Re: API Bidder software Multi-Token issue

2015-07-10 Thread Nadine Sundquist (AdWords API Team)
Greetings Előd, That sounds like a cool application. Based on what you've described, it sounds like your application is a good candidate for the OAuth 2.0 web flow . We mention it

Re: Upgraded Urls: Can not migrate Ads with german Umlauts (öäüß) in final url

2015-07-14 Thread Nadine Sundquist (AdWords API Team)
Hello Thomas, Please give it another try. We've pushed a fix out for this. Cheers, Nadine, AdWords API Team On Wednesday, July 1, 2015 at 6:57:12 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hi Thomas, > > We've already given this a try, and it is not

Re: Multiple operations with CampaignExtensionSetting Srevice

2015-07-14 Thread Nadine Sundquist (AdWords API Team)
Hi Rothana, Please give this another try. We now have a fix available. Cheers, Nadine, AdWords API Team On Thursday, July 9, 2015 at 12:11:56 PM UTC-4, Nadine Sundquist (AdWords API Team) wrote: > > Hello Rothana, > > Someone else was having this issue. The workaround for this

Re: Weird Sitelink feed definition and mapping

2015-07-20 Thread Nadine Sundquist (AdWords API Team)
> > On Tuesday, July 7, 2015 at 10:11:22 AM UTC-5, Nadine Sundquist (AdWords > API Team) wrote: >> >> Hello Margaret, >> >> I see what you're saying. Thanks for clarifying. I'm going to contact >> some of the people who were involved in the effort of u

Re: QualityScore on Shopping Campaigns Criterions with Product Partition always "5"!

2015-07-29 Thread Nadine Sundquist (AdWords API Team)
Hello Markus, Check out the documentation on QaulityInfo.qualityScore . This field only becomes relevant when your criterion

Re: QualityScore on Shopping Campaigns Criterions with Product Partition always "5"!

2015-07-30 Thread Nadine Sundquist (AdWords API Team)
ant. We know the documentation. > > But why is it then filled with "5"? Wouldn't it be better you just return > "" if it's a product partition? "5" is definetly incorrect. > > Greetings, > Markis > > Am Donnerstag, 30. Juli 2015 0

Re: GeoLocationService cannot evaluate some addresses

2015-07-30 Thread Nadine Sundquist (AdWords API Team)
Hi Dzmitry, Umesh and I were both able to reproduce your issue, and the location you've specified is valid when I checked on this page . I've sent over the information to the engineers who specialize in this component to see

Re: Adwords_Redirect URL param effect on final URL system

2015-08-03 Thread Nadine Sundquist (AdWords API Team)
Hello Vignesh, It sounds like you're referring to ValueTrack parameters . Check out our Upgraded URL migration guide

  1   2   3   4   5   6   >