Google-Ads-AdWords-Client

 view release on metacpan or  search on metacpan

examples/v201809/basic_operations/add_responsive_search_ad.pl  view on Meta::CPAN

      ],
      finalUrls    => [ "http://www.example.com/cruise" ],
      path1        => "all-inclusive",
      path2        => "deals"
  });

  my $ad_group_ad = Google::Ads::AdWords::v201809::AdGroupAd->new({
      adGroupId => $ad_group_id,
      ad        => $responsive_search_ad,
      # Additional properties (non-required).
      status    => "PAUSED"
  });

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

  # Add ad.
  my $result =
      $client->AdGroupAdService()->mutate({ operations => [ $operation ] });
  if ($result->get_value()) {
    foreach my $ad_group_ad (@{$result->get_value()}) {
      printf "New responsive search ad with ID %d was added.\n",
          $ad_group_ad->get_ad()->get_id();
      printf "  Headlines:\n";
      foreach my $headline (@{$ad_group_ad->get_ad()->get_headlines()}) {
        my $pinned = $headline->get_pinnedField();
        printf "    %s\n", $headline->get_asset()->get_assetText();
        if ($pinned) {
          printf "      (pinned to %s)\n", $pinned;
        }
      }
      printf "  Descriptions:\n";
      foreach my $description (@{$ad_group_ad->get_ad()->get_descriptions()}) {
        my $pinned = $description->get_pinnedField();
        printf "    %s\n", $description->get_asset()->get_assetText();
        if ($pinned) {
          printf "      (pinned to %s)\n", $pinned;
        }
      }
    }
  }
  else {
    print "No ads were added.\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 => "v201809" });

# By default examples are set to die on any server returned fault.
$client->set_die_on_faults(1);

# Call the example
add_responsive_search_ad($client, $ad_group_id);



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