Google-Ads-GoogleAds-Client
view release on metacpan or search on metacpan
examples/account_management/update_user_access.pl view on Meta::CPAN
my $google_ads_service = $api_client->GoogleAdsService();
my $iterator = Google::Ads::GoogleAds::Utils::SearchGoogleAdsIterator->new({
service => $google_ads_service,
request => $search_request
});
if ($iterator->has_next) {
my $google_ads_row = $iterator->next;
my $access = $google_ads_row->{customerUserAccess};
printf "Customer user access with User ID = %d, Email Address = '%s' " .
"Access Role = '%s' and Creation Time = %s was found in " .
"Customer ID: %d.\n",
$access->{userId}, $access->{emailAddress}, $access->{accessRole},
$access->{accessCreationDateTime}, $customer_id;
return $access->{userId};
} else {
print "No customer user access with requested email was found.\n";
return undef;
}
}
# Modifies the user access role to a specified value.
sub modify_user_access {
my ($api_client, $customer_id, $user_id, $access_role) = @_;
# Create the modified user access.
my $user_access =
Google::Ads::GoogleAds::V24::Resources::CustomerUserAccess->new({
resourceName =>
Google::Ads::GoogleAds::V24::Utils::ResourceNames::customer_user_access(
$customer_id, $user_id
),
accessRole => $access_role
});
# Create the operation.
my $user_access_operation =
Google::Ads::GoogleAds::V24::Services::CustomerUserAccessService::CustomerUserAccessOperation
->new({
update => $user_access,
updateMask => all_set_fields_of($user_access)});
# Update the user access.
my $user_access_response = $api_client->CustomerUserAccessService()->mutate({
customerId => $customer_id,
operation => $user_access_operation
});
printf
"Successfully modified customer user access with resource name '%s'.\n",
$user_access_response->{result}{resourceName};
}
# Don't run the example if the file is being included.
if (abs_path($0) ne abs_path(__FILE__)) {
return 1;
}
# Get Google Ads Client, credentials will be read from ~/googleads.properties.
my $api_client = Google::Ads::GoogleAds::Client->new();
# By default examples are set to die on any server returned fault.
$api_client->set_die_on_faults(1);
# Parameters passed on the command line will override any parameters set in code.
GetOptions(
"customer_id=s" => \$customer_id,
"email_address=s" => \$email_address,
"access_role=s" => \$access_role
);
# Print the help message if the parameters are not initialized in the code nor
# in the command line.
pod2usage(2) if not check_params($customer_id, $email_address, $access_role);
# Call the example.
update_user_access($api_client, $customer_id =~ s/-//gr,
$email_address, $access_role);
=pod
=head1 NAME
update_user_access
=head1 DESCRIPTION
This code example updates the access role of a user, given the email address.
Note: This code example should be run as a user who is an Administrator on the
Google Ads account with the specified customer ID. See
https://support.google.com/google-ads/answer/9978556 to learn more about account
access levels.
=head1 SYNOPSIS
update_user_access.pl [options]
-help Show the help message.
-customer_id The Google Ads customer ID.
-email_address Email address of the user whose access role should be modifled.
-access_role The updated user access role, e.g. ADMIN, STANDARD, READ_ONLY
and EMAIL_ONLY.
=cut
( run in 0.566 second using v1.01-cache-2.11-cpan-f56aa216473 )