Smart campaigns are designed to help small businesses reach more customers online. They require minimal setup and maintenance, relying on the best of Google's advertising technology to automatically optimize the campaign based on the details of your business and your goals, whether that be customer calls, visits to your location, or actions on your website.
The Smart campaign creation workflow requires a few steps that are unique from
other campaign types. As a best practice, the entities being added in the steps
outlined below should be created in a single
GoogleAdsService.Mutate
request.
Below is a summary of the steps for creating a new Smart campaign. You can also review the code sample in its entirety for more details.
- Build a list of keyword themes with suggestions from the
SuggestKeywordThemes
service method, theKeywordThemeConstantService
, or with free-form keyword themes. These keyword themes are used to retrieve different tiers of budget suggestions, create keyword theme campaign criteria, and generate suggestions for ad text creatives. - Retrieve suggestions for budget amount and ad headlines and descriptions
from the
SmartCampaignSuggestService
. This service uses information about your business, the target geographic location, target language, and keyword themes to suggest ahigh
,low
, andrecommended
daily budget amount, as well as up to three headlines and two description texts for the ad itself. - Create a
CampaignBudget
using the suggested budget amount. It's strongly recommended that you use the suggested budget amount in order to maximize your campaign's performance. A Smart campaign budget cannot be shared with any other campaigns. - Create a
Campaign
and aSmartCampaignSetting
. ASmartCampaignSetting
cannot exist separate from theCampaign
it's associated with, which is why we strongly recommend creating the two entities together. - Create a list of
campaign criteria
. In this guide we will be using theKeywordThemeConstants
retrieved from theKeywordThemeConstantService
to create keyword theme campaign criteria, but we also describe the other types of campaign criteria that are supported. - Create an
AdGroup
. A Smart campaign can have only oneAdGroup
associated with it. - Create one or more
AdGroupAds
, each having no more than three headlines and two descriptions.