Re: DSK campaign individual budget

2016-02-15 Thread 'Thanet Knack Praneenararat (AdWords API Team)' via AdWords API Forum
Hello Maxim, I've just confirmed that I can create a campaign with individual budget (not shared) by putting *$budget->isExplicitlyShared = false *after line 43 in our *Ad

DSK campaign individual budget

2016-02-15 Thread maxim . gavrilenko
I create DSK campaign by API (PHP). And set budget to 100$ Campaign created. but with shared budget. I tried: When I create the Budget, set the *isExplicitlyShared* property to *false* (default value is true. *$budget->isExplicitlyShared = false;*) and assign that budget to the campaign. Camp

Re: Campaign individual budget

2013-10-24 Thread Ondřej Bartas
When you are creating New Campaign you need to create budget first and set isExplicitlyShared to FALSE. Then use ID from budget for new campaign as parameter budget_id When you are updating budget, just find campaign with selector BudgetId and then update Budget object by Budget Service. Dn

Re: Campaign individual budget

2013-07-12 Thread Cristiano Monteiro
Just made the arrangements so at update time, I get the budget ID from the existing campaign, set it to the newly created Budget instance and them pass to the service. Worked like a charm. Thank you guys. Take care On Fri, Jul 12, 2013 at 5:45 PM, David Torres (AdWords API Team) < adwordsapiadvis

Re: Campaign individual budget

2013-07-12 Thread David Torres (AdWords API Team)
Hi, I can confirm what David just said. You need to use the BudgetOrderService to create/update budgets now. Best, - David Torres - AdWords API Team On Friday, July 12, 2013 4:43:08 AM UTC-4, david wrote: > > I believe even existing individual budgets have to be updated via the > budgetServic

Re: Campaign individual budget

2013-07-12 Thread david
I believe even existing individual budgets have to be updated via the budgetService now. So you should be able to get the BudgetId field of your existing campaign by doing a GET to CampaignService (don't know the specifics of doing this using the Java client library). Then just mutate that budg

Campaign individual budget

2013-07-12 Thread Cristiano Monteiro dos Santos
Hi guys. I'm using Adwords Java API v201306. I have already created a campaign that is NOT using a shared budget (when I check on the Adwords interface, it shows I'm using an individual budget, giving me the option to switch to a budget from my shared library). Now I'm trying to update that ca