Re: Where to get the fully updated documentation of ads templates

2015-05-05 Thread Anthony Madrigal
Hello Jason, The link you provided is outdated in some languages, so please make sure you are under English to see an updated version of that document. In addition to that, there is another guide with more information on Tem

Re: Where to find the fully documentation about google ads templates

2015-05-05 Thread Anthony Madrigal
Hi Jason, Please refer to your other post for any further questions or concerns. Thanks, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our

Re: Proximity Criterion Id

2015-05-07 Thread Anthony Madrigal
Hi Jonathan, Unfortunately there is not. For Location criteria, the ID is from a fixed set of IDs, but a Proximity

Re: Proximity Criterion Id

2015-05-07 Thread Anthony Madrigal
Hi Jonathan, Unfortunately there is not. For Location criteria, the ID is from a fixed set of IDs, but a Proximity

Re: Get the number of clicks on each ad for the last hour

2015-05-11 Thread Anthony Madrigal
Hi Jason, You could use the Ad Performance Report . In your selector, make sure to select *Clicks. *Unfortunately, you will not be able to get the number of clicks for the last hour using this report type

Re: How to get Adword account start date using api.?

2015-05-11 Thread Anthony Madrigal
Hi VJ, The API currently doesn't support retrieving account start date details. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/

Re: Amount spent in account

2015-05-11 Thread Anthony Madrigal
Hi Jonathan, There are many report types you can use to get the account costs. The best fit for you depends on your use case. - If you want totals by account, then use the *Cost* field of the ACCOUNT_PERFORMANCE_REPORT - If you want totals by budget, then use the *Cost* field of the

Re: IP Exclusion via AdWords API

2015-05-12 Thread Anthony Madrigal
Hi Ofir, You could use the CampaignCriterionService and select a CampaignCriterion. You will need to set up a Predicate and use the EQUALS operator to set *CriteriaType *equal to *IP_BLOCK.* Regards, A

Re: Creating AdwordsClient without LoadFromStorage

2015-05-12 Thread Anthony Madrigal
Hi Jeremy, In the client library, check out the create_adwords_client_without_yaml.py example

Re: geo_performance_report how to aquire zip code

2015-05-12 Thread Anthony Madrigal
Hi, Yes, there is a way to target the zip code of an area. When running the report, you are going to get the criteria ID for the zip code, which will be different than the actual zip code. If you look at the Geographical Targeting criteria codes

Re: CustomParameter questions

2015-05-12 Thread Anthony Madrigal
Hey, According to your error message, you have a DUPLICATE_ELEMENT . In this case, the parameter keys are not case sensitive so that is why it is reading a duplicate for *promocode* and *promoCode*. You could remove th

Re: API to upload adwords scripts

2015-05-12 Thread Anthony Madrigal
Hello Todd, It is currently not possible to use the AdWords API to add AdWords Scripts. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDev

Re: Keyword in deleted AdGroup still marked as enabled

2015-05-12 Thread Anthony Madrigal
Hey Filip, Yes, that's correct. For example, if you change the status of your *AdGroup*, the status of each of its *keywords* will remain the same. One reason for this is that it allows you to pause or enable *all* of the keywords in an *AdGroup* by simply changing the status of the *AdGroup*.

Re: Disapproval Reasons for Keyword/AdExtension

2015-05-13 Thread Anthony Madrigal
Hi Jon, Yes, there is now a feature to get the disapproval reasons ! It is located under the *BiddableAdGroupCriterion.* Cheers, Anthony, AdWords API Team --

Re: GMB Account Token Through OAuth — What is the "Scope" variable?

2015-05-13 Thread Anthony Madrigal
Hi, The scope variable has been changed from https://adwords.google.com/api/adwords/ to https://www.googleapis.com/auth/adwords. You could also use the same scope both for your AdWords account and your GMB account.

Re: CampaignService.get()

2015-05-13 Thread Anthony Madrigal
Hey Jonathan, The error you are getting indicates that the user whose OAuth credentials you are using does not have an AdWords account. Please generate another refresh/ access token, this time making sure you are signed in as a user with access to your test account. Also, take a look at the SO

Re: CampaignService.get()

2015-05-14 Thread Anthony Madrigal
Hi Jonathan, You may have confused the client ID from the Developer's Console with the customer ID from AdWords. You will want to use your AdWords CID. You can use the *CustomerService.get()* without specifying the clientCustomerId

Re: change DAY to LIFETIME in FrequencyCap timeUnit

2015-05-14 Thread Anthony Madrigal
Hi, You could do this by creating an FrequencyCap object then setting their TimeUnit to *LIFETIME*. When

Re: Where is Network type - Criterion Type mapping table page ?

2015-05-14 Thread Anthony Madrigal
Hi, There isn't a module for checking the network type and criteria type but we have a great table which details the targeting and bidding options for each Criteria Type both on the Campaign and AdGroup level. Cheers, Anth

Re: CampaignService.get()

2015-05-14 Thread Anthony Madrigal
Hello, When using the CID, you are going to want to use the one from the test AdWords account, not the one from GTM-OAUTH2. The clientCustomerId header is optional when running CustomerService

Re: Bundle Adwords API Python using Cx_Freeze

2015-05-15 Thread Anthony Madrigal
Hello Enrique, Unfortunately, I am not sure how you would do this either, but there may be others in the group that could provide some suggestions. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleads

Re: Mobile app installs campaign

2015-05-18 Thread Anthony Madrigal
Hello, The AdWords help center provides a great guide to choose which campaign type suits your app requirements. There is also an API guide which details Driving Mobile Application Downloads

Re: Customer account balances

2015-05-18 Thread Anthony Madrigal
Hello, If you want to get the account balances through reporting then you can run an Account Performance Report and include *Cost* as one of your attributes. This will give you the total cost for all

Re: Be able to get budget order spend and status with BudgetOrderService adwrods api?

2015-05-18 Thread Anthony Madrigal
Hello Rothana, You can use the API to obtain the spending limit from a BudgetOrder object . Using the BudgetOrderRequest, you can obtain the status of the *latest* request

Re: Be able to get budget order spend and status with BudgetOrderService adwrods api?

2015-05-19 Thread Anthony Madrigal
Hi Rothana, The UI and API have different statuses for Budget Order. The UI uses different logic for their statuses *Active *and *Ended. *For example, the API status may be *APPROVED *but the budget order may have gone passed its end date or spent all its budget, which is why the UI status is *

Re: Upgraded URL, invalid char

2015-05-20 Thread Anthony Madrigal
Hello, Your utm_x parameters should not be specified as CustomerParameters . CustomParameters should only be used for parameters whose values are set by the AdWords user. Luckily, you can use those paramete

Re: Behavior of includeZeroImpressions-Flag for Product Partition Report

2015-05-21 Thread Anthony Madrigal
Hello, You should not be getting zero impression rows if you are including Date as one of your fields and/or setting includeZeroImpressions=false. Could you *Reply privately to author *the report definition with Date and includeZeroImpressions=false along with the campaign ID that produced zero

Re: No MobileFinalUrl for Mobile Preferred Ads?

2015-05-22 Thread Anthony Madrigal
Hello, When creating a mobile text ad, the *finalUrl *is implicitly going to be the same as the *finalMobileUrl. *Mobile text ads will then only have one field for the final Url. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blo

Re: SORTING_NOT_SUPPORTED

2015-05-22 Thread Anthony Madrigal
Hello Sandeep, Unfortunately, sorting is not supported for report downloads. If you just want to have the list of enabled campaigns somewhere, you can use something similar to the following AWQL statement and output it in a log: SELECT CampaignName, CampaignId, Impressions, Clicks FROM CAMPA

Re: Applying for Basic Access

2015-05-22 Thread Anthony Madrigal
Hey J, The only difference is that Basic access tokens can do 10,000 operations/day, while Standard access tokens have unlimited operations per day. Regardless of the access level, your API usage will still be subject to the other rate limits in our Rate Limits guide

Re: Applying for Basic Access

2015-05-22 Thread Anthony Madrigal
Hello, If by different application, you mean a different API, then no. The API is the same for all access levels. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://p

Re: Accessing remarketing tag status using the API

2015-05-27 Thread Anthony Madrigal
Hey Evan, You can retrieve the remarketing tag by using the *CustomerService. *This will give you the tag snippet associated to the given *Customer.* Regards, Anthony, AdWord

Re: Accessing remarketing tag status using the API

2015-05-28 Thread Anthony Madrigal
Hey Evan, There is no tag status you can obtain through the API. Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=

Re: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/api/adwords/cm/v201502/AdGroupAdService?wsdl'

2015-05-28 Thread Anthony Madrigal
Hi, This typically happens due to connectivity issues from the user's computer to the AdWords API server. Are these URLs accessible from the user's machine on a browser or through cURL? Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on

Re: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/api/adwords/cm/v201502/AdGroupAdService?wsdl'

2015-05-29 Thread Anthony Madrigal
Hello, Were you able to access the URLs on your web browser or by using cURL? Regards, Anthony, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/p

Re: Can't update po_number for ended budget

2015-05-29 Thread Anthony Madrigal
Hello Kimsrung, It appears that you are missing the *startDateTime *and *endDateTime *in your selector. Those fields are required. You can find more information on those fields here .

Re: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/api/adwords/cm/v201502/AdGroupAdService?wsdl'

2015-06-02 Thread Anthony Madrigal
Hello, If you can access the URL by your browser but not through your code, then you should check your code to see if it is running locally or from a separate machine. You could also do some troubleshooting on the path your code is taking through your own network. Regards, Anthony, AdWords AP

Re: AdGroupCriterion. Migrate URL fails

2015-06-03 Thread Anthony Madrigal
Hello, The UNEXPECTED_INTERNAL_API_ERROR is a server side error. The request you sent generally does not result in this error. Please try again at a later time and see if you are still getting the same error. R

Re: Gmail metrics

2015-06-04 Thread Anthony Madrigal
Hi Jay, These columns are currently not available through both AdWords Scripts and AdWords API. Regards, Anthony AdWords Scripts Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+

Re: AdGroupCriterion. Migrate URL fails

2015-06-04 Thread Anthony Madrigal
Hello, Instead of setting your destination URL to null , try setting it to the empty string "". This will clear the destination URL. Regards, Anthony, AdWords API T

Re: User Location Performance Report

2015-06-04 Thread Anthony Madrigal
Hello, AdWords API does not support exporting your report into a Google Spreadsheet. However, there are two ways around this: 1. Use AdWords Scripts to export your report to a spreadsheet

Re: CampaignService RequestError.UNKNOWN

2015-06-09 Thread Anthony Madrigal
Hello Ronak, Could you please send me your request and response you are receiving through *Reply privately to author?* Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https:/

Re: Placament & Upgraded URL

2015-06-09 Thread Anthony Madrigal
Hello, The targetId for the tracking template will be the keyword, DSA or remarketing list target that triggered your ad. Those values will get filled accordingly. For more information on tracking templates and the targetId, go to the *Available ValueTrack parameters -> Standard parameters*

Re: CampaignService RequestError.UNKNOWN

2015-06-10 Thread Anthony Madrigal
Hello Ronak, Unfortunately, the API does not have a service or way of letting the user know whether or not their account is a Google Grants account. To check if the account is a Google Grants account through the UI go to - Gear icon -> *Billing -> Billing settings* - If it is a Google Gr

Re: Get an empty list of campaigns for specific account

2015-06-10 Thread Anthony Madrigal
Hi Hugo, It appears you are trying to run a report on an MCC level. You will need to run it on an account level by adding that *Customer ID* in your properties file. The AdWords API documentation offers a way to report on multiple accounts.

Re: Keywords Performance Report Not Reading Keyword

2015-06-11 Thread Anthony Madrigal
Hello, This is an AdWords Scripts related question, not an AdWords API question. Could you please repost your question in the AdWords Scripts forum so that other Scripts users can refer to it if they a

Re: Using chines and Arabic characters in keywords

2015-06-11 Thread Anthony Madrigal
Hi, You should be able to use characters such as Chinese and Arabic, but there are some restrictions on some UTF-8 characters. There is a matches regex to check if the keyword text is within the g

Re: Can I make payment through Adwords API ?

2015-06-15 Thread Anthony Madrigal
Hello, The AdWords API does not support making payments through the API. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =

Re: API to segment a ad by platform (iOS, Android, Mobile, Web)?

2015-06-16 Thread Anthony Madrigal
Hello, You could create a criterion of type OperatingSystemVersion . Their IDs will correspond to the criteria codes for Mobile Platforms

Re: AWQL and join

2015-06-16 Thread Anthony Madrigal
Hello Marcin, AWQL does not support joining reports. You will need to run two separate reports, one for Keywords Performance Report and one for Ad Performance Report.

Re: Filtering Terms out of Search Query Report Results

2015-06-17 Thread Anthony Madrigal
Hi, Since this issue is regarding AdWords Scripts, could you please submit your question again on the AdWords Scripts forum ? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: PlacementURL Not Returned Properly in Keywords Performance Report

2015-06-17 Thread Anthony Madrigal
Hi Charlie, The *PlacementUrl* and *KeywordText* fields both contain the same information: a descriptive string for the criterion. Therefore, I'd recommend selecting one or the other. If you select both, you'll still only get back one field with the display name "Keyword". We're aware that thi

Re: Read Only Access

2015-06-18 Thread Anthony Madrigal
Hello, Yes, you can grant read-only access to the account. When granting someone permission to your account via *Account settings -> Account access -> Choose an access level, *you can set the access level to *Read-only access* The types of access levels are - Administrative access - Sta

Re: Retrieve final URL over API

2015-06-18 Thread Anthony Madrigal
Hi Dominic, Could you please double check to see whether the ads you are selecting have been migrated to Upgraded Urls? You could do this by checking if "Url" ( Ad.url ) is not null. Ads will either have

Re: Keyword Performance Report Approval Status

2015-06-18 Thread Anthony Madrigal
Hi, You can run a Keywords Performance Report and include the fields *id, AdGroupId, CampaignId *and *ApprovalStatus. *You will need to include a metric field, like you mentioned, to get back "n" row

Re: Can't get billing account through api

2015-06-19 Thread Anthony Madrigal
Hi Kimsrung, You can obtain the Billing Account through the *BudgetOrderService* by using the getBillingAccounts() method. Please see the section on listing available billing accounts

Re: Read Only Access

2015-06-19 Thread Anthony Madrigal
Hi Kristian, To my knowledge, the only option for read-only MCC access is: 1. Create an MCC under MCC user A 2. Link all AdWords accounts to the MCC 3. Invite another MCC user B to have Read-only access to the MCC The only problem here is that MCC user A will still have *User interface

Re: Your client does not have permission to get URL /api/adwords/mc/v201502/CustomerService from this server.

2015-06-19 Thread Anthony Madrigal
Hello, It appears your link is incorrect. It should be https://adwords.google.com/api/adwords/*mcm*/v201502/CustomerService?wsdl Please try it with that URL and see if you still run into that error. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Al

Re: Your client does not have permission to get URL /api/adwords/mc/v201502/CustomerService from this server.

2015-06-22 Thread Anthony Madrigal
Hey, Could you try to see if you can access that link through your browser? Also, could you try to run *traceroute adwords.google.com *from the command line and see if that succeeds? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our b

Re: Read Only Access

2015-06-22 Thread Anthony Madrigal
Hi, The account is the AdWords application, whereas the user is the one using the account (e.g. the email addresses with access to the account). The email addresses you invite to access your account need to be Google accounts that do not have access to *other *AdWords accounts. For more detail

Re: Is there ANY possible way to download the Ad (the image itself) used in a Campaign?

2015-06-23 Thread Anthony Madrigal
Hello, If your ad is a Text ad *, *you will not be able to download the ad. However, if your ad is a Template Ad

Re: Want to know about shopping campaigns data

2015-06-24 Thread Anthony Madrigal
Hi, You can use AdWords API to run a Shopping Performance Report using the fields *OfferId, Clicks, Cost *and *ConversionValue. *You could also include *CampaignId *and/or *CampaignName *if you'd lik

Re: Keyword Performance Report Approval Status

2015-06-24 Thread Anthony Madrigal
Hey, You could include the field Date along with the other fields I mentioned so that you can see your statistics broken down by date. Cheers, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~

Re: How to get the phone number of a call-only Ad in report?

2015-06-25 Thread Anthony Madrigal
Hello, Unfortunately, the Ad Performance Report does not have a field to display the phone number. The field *Headline *returns the string representation of the key attributes of the call only ad, which is where the number is displayed on the ad. Regards, Anthony AdWords API Team -- -- =~=~

Re: Keyword Performance Report Approval Status

2015-06-25 Thread Anthony Madrigal
Hello, Yes, negative keywords do not have a value for the *ApprovalStatus. * Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/post

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-06-29 Thread Anthony Madrigal
Hi, When using the Click Performance Report , you will not be able to select the fields *CampaignName *or *AdGroupName. * The only fields available are the ones listed in that document. The closest field

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-06-29 Thread Anthony Madrigal
Hi, You won't be able to get those fields using the Click Performance Report. You could check the other Report Types to see which ones use *AdGroupName *and *CampaignName *to see which type suits your needs best. Re

Re: Problems with finalUrls in SiteLinks

2015-06-29 Thread Anthony Madrigal
Hello, After looking into your account, I noticed that your sitelink URLs have been disapproved because they run into 404 errors. This may be the reason you cannot successfully add them. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on

Re: Sitelinks upgraded URLS

2015-06-30 Thread Anthony Madrigal
Hi, Could you try using *sitelinkUrl *instead of *sitelinkFinalUrls*? The URL you provided should not be giving an error. Also, please make sure you are using the CampaignExtensionSettingService .

Re: Problems with finalUrls in SiteLinks

2015-06-30 Thread Anthony Madrigal
Hello, Have you tried using one of the *ExtensionSettingServices* such as the CampaignExtensionSettingService ? The services allow you to create sitelinks* without *having to use a feed first. Ou

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-07-01 Thread Anthony Madrigal
Hi Johan, Yes, the Click Performance Report will be able to include stats for display networks. If you want your report broken down by Network type, you can include either the field AdNetworkType1

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-07-01 Thread Anthony Madrigal
Hi Pankaj, The *reportFormat *refers to the type of file you would like your report to be (e.g. CSV, TSV, XML, etc). The Reporting Basics guide provides a detailed description of the formats. Cheers, Anthony A

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-07-01 Thread Anthony Madrigal
Hi Johan, If you use one of the AdNetworkType fields then your stats will be broken down by network types such as Display and Search. In your report, you will see which network types are associated to each click. It will not show which Display partner, only that it *was* a Display partner. Re

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-07-01 Thread Anthony Madrigal
Hey Johan, There was a recent forum post that details how to get the URLs of the Display Network partners. Ch

Re: Extract targeting presets

2015-07-01 Thread Anthony Madrigal
Hi, Yes, you can retrieve your targets by using the *CampaignCriterionService. * This example demonstrates how to retrieve target locations. If you want to include all targets, then you will need to

Re: Uploading offline conversions - CONVERSION_PRECEDES_CLICK

2015-07-01 Thread Anthony Madrigal
Hi Anton, You can get the time by using the OfflineConversionFeedService . You can use this recent post

Re: Extract targeting presets

2015-07-06 Thread Anthony Madrigal
Hi, Your variables *cId, cs, *and *r *do not have the correct values in them. You will need to use the values from the *ads.properties *file or replace *.withClientSecrets(cId, cs).withRefreshToken(r)* with *fromFile().* The DFP API forum will have a better idea of whether you can extract tar

Re: How to get " adwords campaign, adgroup " name in CSV.

2015-07-06 Thread Anthony Madrigal
Hi guys, @Naresh: If you use the URL Performance Report and include the field *Url, *then you will get the URL of the partner site. You could modify the report query so that it only checks the one partner site URL you want (e.g. WHERE Url = 'YOUR_PARTNER_URL_HERE'). @Johan: You can use ValueT

Re: Developer Token in AdWord

2015-07-07 Thread Anthony Madrigal
Hello, We are not allowed to comment on policy issues, but you could contact the AdWords API Compliance Team in order to get more information regarding the Developer Token. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Question About Ad Customizer Feed Item Limit

2015-07-07 Thread Anthony Madrigal
Hi Kevin, Unfortunately, there are no plans to change the Feed Items limit in the near future. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+Googl

Re: AdWords Multiple Reports

2015-07-07 Thread Anthony Madrigal
Hello, Unfortunately, you will not be able to run a report on multiple accounts. You can get reporting data from multiple accounts by submitting a separate report for each account. Regards, Anthony AdWords API

Re: i am having issues accessing API

2015-07-09 Thread Anthony Madrigal
Hi Gilberto, Could you please *Reply privately to author* the SOAP request and response in which you are getting this error? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ h

Re: Difference in statistics between the web interface of Google and my application. (In one click)

2015-07-09 Thread Anthony Madrigal
Hello, Some adjustments may be made to stats days after a click. For more information on how 'fresh' your stats are, you can visit the Determining your data's freshness guide. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=

Re: Campaign Audience Exclusions in a Report

2015-07-09 Thread Anthony Madrigal
Hello Michael, The *Audience Performance Report *contains a field called isNegative . This shows whether or not the criterion is a negative (exclusion) criterion. Cheers, Anthony AdWords API

Re: Auction Insights Data available through the API?

2015-07-10 Thread Anthony Madrigal
Hi Hunter, AdWords API currently does not support Auction Insights. Once it's available, we'll announce it on the blog and the release note. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdevelope

Re: Use of text string 'ax' in an Ad Headline returning POLICY_ERROR

2015-07-10 Thread Anthony Madrigal
Hi Alan, Could you please *Reply privately to author *the headline of the text ad in which you are getting the error? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://

Re: Duplicate keywords created during manual keyword migration to upgraded URLs

2015-07-10 Thread Anthony Madrigal
Hey Chris, You could try to filter the destination URLs out by adding a predicate that says, 'WHERE CriteriaDestinationUrl = " "'. This should hopefully not include duplicate keywords. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on ou

Re: Campaign Audience Exclusions in a Report

2015-07-10 Thread Anthony Madrigal
Hi Michael, Could you please give me some of your Campaign IDs you are trying to get back data from through *Reply privately to author?* Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blo

Re: DESTINATION_URL_PERFORMANCE and final urls

2015-07-10 Thread Anthony Madrigal
Hi Emanuele, There is currently no *Final URL Performance Report *yet in AdWords API. Check our blog for any announcements regarding this update. Regards, Anthony A

Re: SEARCH_QUERY_PERFORMANCE_REPORT "Added / Excluded" column

2015-07-13 Thread Anthony Madrigal
Hello, This is an AdWords API forum. Could you please repost your question on the AdWords Scripts forum? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Als

Re: AdWords Multiple Reports

2015-07-13 Thread Anthony Madrigal
Hello, I am glad to see you found a solution. Let me know if you run into any other issues. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAd

Re: Some keywords with zero impressions are missing in KEYWORDS_PERFORMANCE_REPORT

2015-07-13 Thread Anthony Madrigal
Hello, Could you please *Reply privately to author* your CID as well as some keyword IDs that are missing from your reports? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ h

Re: KEYWORDS_PERFORMANCE_REPORT not returning adgroup level negative keywords

2015-07-13 Thread Anthony Madrigal
HI, My suggestion is to add the predicate "IsNegative IN [true,false]". This should add all keywords regardless of whether they are negative or not. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googlead

Re: Adwords API AdgroupExtensionSetting Service WRITE_ACCESS_DENIED Error

2015-07-14 Thread Anthony Madrigal
Hello Ronak, Could you please *Reply privately to author *your SOAP request and response where you are getting this error? Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ htt

Re: Errors Following the First Request Guide

2015-07-14 Thread Anthony Madrigal
Hi Jeffery, AdWords API v201309 has been deprecated. Please download v201506 from one of our client libraries and see if you are still getting these errors. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: Errors Following the First Request Guide

2015-07-14 Thread Anthony Madrigal
Hi Jeff, Please make sure that you are using the latest version of the google-adwords-api gem. Hopefully this fixes the issue. Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com

Re: getting costs per keyword

2015-07-14 Thread Anthony Madrigal
Hello Tim, Could you please provide me through *Reply privately to author* - Your CID - Your SOAP request for the report - A screenshot of the cost in the UI Thanks, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: Failing to Download reports using v201406

2015-07-14 Thread Anthony Madrigal
Hi Vandita, Could you please send me your SOAP request through *Reply privately to author*? Regards, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAd

Re: Adwords API Radius Targeting.

2015-07-14 Thread Anthony Madrigal
Hi Ronak, This recent post should help you get a better understanding of radius targeting. The Location Targeting

Re: How To get Developer Token for Adwords API Offline use

2015-07-15 Thread Anthony Madrigal
Hi Amit, The AdWords API documentation contains a signup guide which shows how to get a Developer Token. Cheers, Anthony AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: ht

  1   2   3   4   5   6   7   8   9   10   >