Hi, To create, modify, and delete budgets, please use the BudgetService <https://developers.google.com/adwords/api/docs/reference/v201502/BudgetService.Budget>. See our budgets guide <https://developers.google.com/adwords/api/docs/guides/shared-budgets> for more information.
Cheers, Josh, AdWords API Team On Tuesday, April 21, 2015 at 6:39:22 AM UTC-4, Michael D wrote: > > Hi, > > Im trying to change the budget of a campaign. Im setting the amount in > money and the budgetId in budget. Butr it doesnt work. Do I forgot > something? > > //create Campaign with Status > Campaign campaign = new Campaign(); > campaign.id = CurrentCampaignId; > campaign.idSpecified = true; > > var money = new Money(); > money.microAmount = amount; > money.microAmountSpecified = true; > > var budget = new Budget(); > budget.budgetId = CurrentBudgetId; > budget.budgetIdSpecified = true; > > campaign.budget = budget; > campaign.budget.amount = money; > > > //Create the Operation > CampaignOperation operation = new CampaignOperation(); > operation.operand = campaign; > operation.@operator = Operator.SET; > operation.operatorSpecified = true; > > > Thank you very much. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at http://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/82611f29-3e50-42a8-bd95-37564e21834c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
