GOOGLE-ADWORDS-PERL-CLIENT

 view release on metacpan or  search on metacpan

examples/v201309/basic_operations/delete_ad.pl  view on Meta::CPAN

use Google::Ads::AdWords::Logging;
use Google::Ads::AdWords::v201309::Ad;
use Google::Ads::AdWords::v201309::AdGroupAd;
use Google::Ads::AdWords::v201309::AdGroupAdOperation;

use Cwd qw(abs_path);

# Replace with valid values of your account.
my $ad_group_id = "INSERT_AD_GROUP_ID_HERE";
my $ad_id = "INSERT_AD_ID_HERE";

# Example main subroutine.
sub delete_ad {
  my $client = shift;
  my $ad_group_id = shift;
  my $ad_id = shift;

  # Create base class ad to avoid setting type specific fields.
  my $ad = Google::Ads::AdWords::v201309::Ad->new({
    id => $ad_id,
  });

  # Create ad group ad.
  my $ad_group_ad = Google::Ads::AdWords::v201309::AdGroupAd->new({
    adGroupId => $ad_group_id,
    ad => $ad
  });

  # Create operations.
  my $operation = Google::Ads::AdWords::v201309::AdGroupAdOperation->new({
    operand => $ad_group_ad,
    operator => "REMOVE"
  });

  # Delete ad.
  my $result = $client->AdGroupAdService()->mutate({
    operations => [$operation]
  });

  # Display ads.
  if ($result->get_value()) {
    my $ad_group_ad = $result->get_value()->[0];
    printf "Ad with id \"%d\" and type \"%s\" was deleted.\n",
           $ad_group_ad->get_ad()->get_id(),
           $ad_group_ad->get_ad()->get_Ad__Type();
  } else {
    print "No ad was deleted.\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
delete_ad($client,$ad_group_id, $ad_id);



( run in 0.664 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )