Google-Ads-GoogleAds-Client
view release on metacpan or search on metacpan
examples/account_management/update_user_access.pl view on Meta::CPAN
#!/usr/bin/perl -w
#
# Copyright 2020, Google LLC
#
# 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 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.
use strict;
use warnings;
use utf8;
use FindBin qw($Bin);
use lib "$Bin/../../lib";
use Google::Ads::GoogleAds::Client;
use Google::Ads::GoogleAds::Utils::GoogleAdsHelper;
use Google::Ads::GoogleAds::Utils::SearchGoogleAdsIterator;
use Google::Ads::GoogleAds::Utils::FieldMasks;
use Google::Ads::GoogleAds::V24::Resources::CustomerUserAccess;
use
Google::Ads::GoogleAds::V24::Services::GoogleAdsService::SearchGoogleAdsRequest;
use
Google::Ads::GoogleAds::V24::Services::CustomerUserAccessService::CustomerUserAccessOperation;
use Google::Ads::GoogleAds::V24::Utils::ResourceNames;
use Getopt::Long qw(:config auto_help);
use Pod::Usage;
use Cwd qw(abs_path);
# The following parameter(s) should be provided to run the example. You can
# either specify these by changing the INSERT_XXX_ID_HERE values below, or on
# the command line.
#
# Parameters passed on the command line will override any parameters set in
# code.
#
# Running the example with -h will print the command line usage.
my $customer_id = "INSERT_CUSTOMER_ID_HERE";
my $email_address = "INSERT_EMAIL_ADDRESS_HERE";
# See Google::Ads::GoogleAds::V24::Enums::AccessRoleEnum for optional values.
my $access_role = "INSERT_ACCESS_ROLE_HERE";
sub update_user_access {
my ($api_client, $customer_id, $email_address, $access_role) = @_;
my $user_id = get_user_access($api_client, $customer_id, $email_address);
if (defined $user_id) {
modify_user_access($api_client, $customer_id, $user_id, $access_role);
}
return 1;
}
# Gets the customer user access given an email address.
sub get_user_access {
my ($api_client, $customer_id, $email_address) = @_;
# Create the search query. Use the LIKE query for filtering to ignore the
# text case for email address when searching for a match.
my $search_query =
"SELECT customer_user_access.user_id, customer_user_access.email_address, "
. "customer_user_access.access_role, customer_user_access.access_creation_date_time "
. "FROM customer_user_access "
. "WHERE customer_user_access.email_address LIKE '$email_address'";
# Create a search Google Ads request that will retrieve the customer user access.
my $search_request =
Google::Ads::GoogleAds::V24::Services::GoogleAdsService::SearchGoogleAdsRequest
->new({
customerId => $customer_id,
query => $search_query
});
# Get the GoogleAdsService.
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 =
( run in 1.528 second using v1.01-cache-2.11-cpan-bbe5e583499 )