this is the one i used for just the campaign creation
// Get the CampaignService.
CampaignService campaignService =
(CampaignService)
user.GetService(AdWordsService.v200909.CampaignService);
// Create campaign.
Campaign campaign = new Campaign();
campaign.name = "Campaign 76");
campaign.statusSpecified = true;
campaign.status = CampaignStatus.PAUSED;
campaign.biddingStrategy = new ManualCPC();
Budget budget = new Budget();
budget.periodSpecified = true;
budget.period = BudgetBudgetPeriod.DAILY;
budget.deliveryMethodSpecified = true;
budget.deliveryMethod = BudgetBudgetDeliveryMethod.STANDARD;
budget.amount = new Money();
budget.amount.microAmountSpecified = true;
budget.amount.microAmount = 50000000;
campaign.budget = budget;
// Create operations.
CampaignOperation operation = new CampaignOperation();
operation.operatorSpecified = true;
operati...@operator = Operator.ADD;
operation.operand = campaign;
// Add campaign.
CampaignReturnValue result = campaignService.mutate((new
CampaignOperation[] {operation}));
On Aug 4, 3:02 am, knuzich <[email protected]> wrote:
> anybody can show a working example of sandbox campaign creation for .
> NET ???
>
> I've tried everything!!!
>
> Method, which is shown on page
> "http://code.google.com/p/adwords-api-dotnet-samples/source/browse/tru...
> " doesn't work because v13 version is very old version!!!! And added
> service (https://sandbox.google.com/api/adwords/v13/CampaignService?
> wsdl) return error!!!
> the newest versions (I mean so) doesn't exist as wsdl.
>
> Method in "http://code.google.com/p/google-api-adwords-dotnet/wiki/
> NoClientLibrary" is described for v13 but where for v200909? Does
> version v200909 work for sandbox? How can I use it for .NET?
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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