GOOGLE-ADWORDS-PERL-CLIENT
view release on metacpan or search on metacpan
examples/v201309/account_management/create_account.pl view on Meta::CPAN
#!/usr/bin/perl -w
#
# Copyright 2012, Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This example illustrates how to create an account.
# Note 1: By default, this account will only be visible via the parent MCC.
#
# Note 2: This example won't work if your token is not approved and you are only
# targeting test accounts. See
# https://developers.google.com/adwords/api/docs/test-accounts
#
# Tags: ManagedCustomerService.mutate
# Author: David Torres <david.t@google.com>
use strict;
use lib "../../../lib";
use Google::Ads::AdWords::Client;
use Google::Ads::AdWords::Logging;
use Google::Ads::AdWords::v201309::ManagedCustomer;
use Google::Ads::AdWords::v201309::ManagedCustomerOperation;
use Cwd qw(abs_path);
use Data::Uniqid qw(uniqid);
# Example main subroutine.
sub create_account {
my $client = shift;
# Force to use the MCC credentials.
$client->set_client_id(undef);
# Create an account object with a currencyCode and a dateTimeZone
# See https://developers.google.com/adwords/api/docs/appendix/currencycodes
# and https://developers.google.com/adwords/api/docs/appendix/timezones
my $account = Google::Ads::AdWords::v201309::ManagedCustomer->new({
name => "Managed Account #" . uniqid(),
currencyCode => "USD",
dateTimeZone => "America/New_York",
});
# Create the operation
my $operation = Google::Ads::AdWords::v201309::ManagedCustomerOperation->new({
operator => "ADD",
operand => $account
});
# Perform the operation. It is possible to create multiple accounts with one
# request by sending multiple operations.
my $response = $client->ManagedCustomerService->mutate({
operations => [$operation],
});
if ($response) {
my $new_account = $response->get_value();
print "Account with customer ID ", $new_account->get_customerId(),
" was created.\n";
} else {
print "No account was created.\n";
}
return 1;
}
# Don't run the example if the file is being included.
if (abs_path($0) ne abs_path(__FILE__)) {
return 1;
}
# Log SOAP XML request, response and API errors.
Google::Ads::AdWords::Logging::enable_all_logging();
# Get AdWords Client, credentials will be read from ~/adwords.properties.
my $client = Google::Ads::AdWords::Client->new({version => "v201309"});
# By default examples are set to die on any server returned fault.
$client->set_die_on_faults(1);
# Call the example
create_account($client);
( run in 1.583 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )