Budget Notes (optional) field in AdWords

2018-04-20 Thread Mathieu Dubreuil
Hi, as per the screenshot I sent, I am trying to retrieve the " Notes (optional) " field from AdWords on the Billing & payments page. I think you can get the Purchase order field from the BudgetOrderService->BudgetOrder->poNumber, but I can't find anything about the Notes field here : https

Re: Error with symfony in the PHP API

2018-03-13 Thread Mathieu Dubreuil
I tried that as well but there were too many things to remove. The ": bool" is return type declaration and was introduced in php 7, and something else in the same file required php 7.1. I ended up upgrading to php version 7.2 as I don't see how version 5.5.9 would've worked. I am guessing the r

Get schedule for campaigns

2018-03-12 Thread Mathieu Dubreuil
Hi, I am simply trying to get the schedules for all of my campaigns and I can't seem to figure out how. I do not want to modify anything, simply retrieve the information about which days every campaign is running. I've found the CampaignCriterionService but I don't understand how to simply set

Error with symfony in the PHP API

2018-02-07 Thread Mathieu Dubreuil
Hi, I have been trying to update from an old version of AdWords (2016). I am currently getting an error : *Parse error*: syntax error, unexpected ':', expecting ';' or '{' in *googleads-php-lib/vendor/symfony/serializer/Normalizer/GetSetMethodNormalizer.php* on line *59* I took a look at the

Re: Campaign Performance Report returns paused campaigns as eligible

2016-11-28 Thread Mathieu Dubreuil
Hi Anthony, Thanks! My bad, I tried using ServingStatus instead of CampaignStatus. I now only see the eligible ones. On Monday, 28 November 2016 16:57:56 UTC-3, Anthony Madrigal wrote: > > Hi Mathieu, > > Although there is no way to determine whether a campaign is limited by > budget through th

Campaign Performance Report returns paused campaigns as eligible

2016-11-28 Thread Mathieu Dubreuil
by Budget " and " Eligible " campaigns. Currently, both " Limited by Budget " and " Paused " are returned as " Eligible ", why is that? Any way to hide the " Paused " ones? Thank you, Mathieu Dubreuil -- -- =~=~=~=~=~=~=~=~=~=~=~

Re: StartDate returned from CAMPAIGN_PERFORMACE_REPORT is incorrect

2016-11-09 Thread Mathieu Dubreuil
Hi, I am currently experiencing a similar issue, but with the BudgetOrderService. The startDateTime seems to be correct all the time, be the endDateTime can be either one day early, one day late or the correct day. I don't know if I should create a new post about it, but the issue looks simila

Re: Get remaining balance for an account

2016-09-27 Thread Mathieu Dubreuil
Still no easy way, but here is the answer I got from another member of the API team : To get the remaining amount of a budget order, you could query for Cost from the Account Performance Report within

Re: BudgetOrderService - Not getting informations Spent , Billing customer name etc

2016-09-26 Thread Mathieu Dubreuil
Hi, You can get it from the BudgetOrderService : https://developers.google.com/adwords/api/docs/reference/v201605/BudgetOrderService.BillingAccount You create the service and use the getBillingAccounts function instead of just get, it returns the billing accounts and from that you can get the

BudgetOrder and BudgetPerformanceReport don't have the same BudgetID

2016-09-23 Thread Mathieu Dubreuil
Hi, I have been looking around a lot and there is no way to get the remaining budget as it was answered in other posts. I found that with the BudgetOrderService I can get all the budgets for every clientCustomerId I have using a for loop. In the same loop I also generate a BudgetPerformanceRe

Retrieve budget spent and end date for all billing accounts

2016-09-21 Thread Mathieu Dubreuil
Hi, I am trying to get all the budgets from all billing accounts used under an MCC account. I saw that I should use the BudgetOrderService to get BudgetOrders, but it returns me an empty page. I can get the billing accounts from the BudgetOrderService->getBillingAccounts, what am I doing wrong