Re: Update API version, now get permission denied trying to download reports

2017-10-13 Thread 'Peter Oliquino' via AdWords API Forum
Hi Andrew, The error message you specified appears to indicate that you have not fully migrated to the latest AdWords API version and the new client library version, rather being an OAuth2 credentials issue. This being said, you may refer to our migration guide

Re: rateScope

2017-10-13 Thread desk
Hello. Okay. I think I'm starting to understand. However, please clarify. I have basic access. My limit is 10,000 operations a day. Every day I plan to add one unique advertising campaign to 100,000 different Google AdWords Accounts. I can not do it ? Because I will exceed my limit? Regards,

Re: Issue with Metrics with KeywordsPerformanceReport

2017-10-13 Thread cv
Hello Sreelakshmi, OK, So there is no other way to determine how many New keywords added by user in some daterange? On Thursday, 12 October 2017 21:06:55 UTC+5:30, Sreelakshmi Sasidharan (AdWords API Team) wrote: > > Hi Cv, > > You are right, keywords will get included in the Keywords Perfo

Enabling auto-tagging for ManagedCustomer

2017-10-13 Thread Vladimir Tatarsky
Hi guys, is that feature planned? As now is seems to be only possible to be done manually. Or am I missing something? I'm using PHP api v201708 Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://pl

Re: Best practice for joining AdWords API placement data with AdWords ValueTrack placement data?

2017-10-13 Thread Jonathan Clarke
Thanks to you also for the swift diligent responses! -- Jonathan Clarke On 12 October 2017 at 5:19:27 PM, 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum (adwords-api@googlegroups.com) wrote: Hello Jonathan, Thank you for being so understanding and for phrasing your questions so we

Error Handling in new Adwords API v201708

2017-10-13 Thread MWA
Hi, Can anyone tell me how to handle errors on new Adwords API v201708? Here is my code, I can not catch exception I've tried these possibilities. My code is working fine but if there is an error I want to handle it. Code: $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();

Re: Cannot link Manager and customer account using mutateLink

2017-10-13 Thread MWA
Use this code: $link = new ManagedCustomerLink(); $link->setManagerCustomerId($managerid); $link->setClientCustomerId($customerid); $link->setLinkStatus(LinkStatus::PENDING); $linkop = new LinkOperation(); $linkop->setOperator(Operator::ADD); $linkop->setOperand($link); $operations = array($

Re: how can i get customer client id which is linked my MCC account using adwords api ????

2017-10-13 Thread MWA
Hi n, When getting account under your manager accounts you don't need to add ->withClientCustomerId('xxx-xxx-xxx') // this is my manager account id Try without it. use this function only when you want to access your customers data. currently you want to access your data, that's why

Re: BatchJobProcessingError.INTERNAL_ERROR

2017-10-13 Thread Vlad Gukasov
Hi, i got BatchJobProcessingError.INTERNAL_ERROR recently. Batch Job id is 581404827. I noticed that this problem occurs when I try to send more than one campaign at a time. Please help me. Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: htt

Creating Link ID for AdWords App Conversions and Remarketing API

2017-10-13 Thread Merve Çakır
Hi all, Our company uses an in-house conversion tracking system that integrated with Legacy API. But we want to update our system by integrating AdWords App Conversions and Remarketing API. New API requires a Link ID, but the dropdown only contains a very specific set of providers (like Adjust,

Re: Issue with Metrics with KeywordsPerformanceReport

2017-10-13 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Cv, Using the AdWords API, you can use the CustomerSyncService to get AdGroupChangeData which wi

Re: Error Handling in new Adwords API v201708

2017-10-13 Thread 'Jude Amagoh' via AdWords API Forum
Hi, The AdWords API Client Library provides examples of common error handling functions when detailing with partial failures . You can find a code example in

Adwords API is always returning me AWAITING_FILE status for Batchjob status

2017-10-13 Thread moha . said
Hi, I'm trying to process some operations, and after making the request, adwords API is always returning me AWAITING_FILE status for the batchjob, and that is preventing me to progress my tasks and finish them. Is there any problem with adwords API? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: CAMPAIGN_LOCATION_TARGET_REPORT returns rows with ID='--'

2017-10-13 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Zweitze, I couldn't find a support article regarding this as well. If you log in to an AdWords client account and navigate to the *Settings* > *Locations* tab, you'll find the "*Total - other locations*" row in the UI report and if you hover over the question mark, you'll find more details o

Re: rateScope

2017-10-13 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Andrii, That's right. For a mutate operation, each mutated item counts as one operation towards the daily limit. You may refer to the rate sheet document for more information. The Basic access developer token allows

Re: Creating Link ID for AdWords App Conversions and Remarketing API

2017-10-13 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Merve, On this forum we discuss questions specific to AdWords API. The best way to reach the right team for questions about Mobile Apps Conversion Tracking and Remarketing is to use the Help button within the AdWords UI to call or ema

Re: Adwords API is always returning me AWAITING_FILE status for Batchjob status

2017-10-13 Thread 'Jude Amagoh' via AdWords API Forum
Hi, AWAITING_FILE status for the BatchJob is the state you come to after create the BatchJob and capture its u

Re: BatchJobProcessingError.INTERNAL_ERROR

2017-10-13 Thread 'Nadine Sundquist (AdWords API Team)' via AdWords API Forum
Greetings Vlad, I have an answer to what's going on here. It appears a temporary ID was incorrectly reused. In on of your *ADD* BudgetOperations, you are using a *budgetId* of *-59*. Then later on in the same job, you are using the *budgetId *of *-59* again for another *ADD* BudgetOperation. Ea