In the Google Ads API, updates are done using a field mask. The field mask lists all the fields you intend to change with the update, and any specified fields that are not in the field mask will be ignored, even if sent to the server.
FieldMaskUtil
The recommended way to generate field masks is using our built-in field mask utility, which lets you generate field masks from a modified object instead of building them from scratch.
Here's an example for updating a campaign:
// Creates a Campaign object with the proper resource name and any other changes.
Campaign campaign =
Campaign.newBuilder()
.setResourceName(ResourceNames.campaign(customerId, campaignId))
.setStatus(CampaignStatus.PAUSED)
.build();
// Constructs an operation that will update the campaign, using the FieldMasks'
// allSetFieldsOf utility to derive the update mask. This mask tells the Google
// Ads API which attributes of the campaign you want to change.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaign)
.setUpdateMask(FieldMasks.allSetFieldsOf(campaign))
.build();
// Sends the operation in a mutate request.
MutateCampaignsResponse response =
campaignServiceClient.mutateCampaigns(
customerId.toString(), Collections.singletonList(operation));
This example first creates an empty Campaign
object and then sets its resource
name so that the API knows which campaign is being updated.
The example uses the FieldMasks.allSetFieldsOf()
method on the campaign to
automatically produce a field mask that enumerates all set fields. You can then
pass the returned mask directly to the update call.
If you need to work with an existing object to update a few fields, you can modify the code as follows:
Campaign existingCampaign;
// Obtains existingCampaign from elsewhere.
...
// Creates a new campaign based off the existing campaign and updates the
// campaign by setting its status to paused.
Campaign campaignToUpdate =
existingCampaign.toBuilder()
.setStatus(CampaignStatus.PAUSED)
.build();
// Constructs an operation that will update the campaign, using the FieldMasks'
// compare utility to derive the update mask. This mask tells the Google Ads API
// which attributes of the campaign you want to change.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaignToUpdate)
.setUpdateMask(FieldMasks.compare(existingCampaign, campaignToUpdate))
.build();
// Sends the operation in a mutate request.
MutateCampaignsResponse response =
campaignServiceClient.mutateCampaigns(
customerId.toString(), Collections.singletonList(operation));
To create a field mask from scratch, you would first create a
FieldMask
object, then add the name of each of the fields you intend to change to the
object.
FieldMask fieldMask =
FieldMask.newBuilder()
.addPaths("status")
.addPaths("name")
.build();
Updating message fields and their subfields
MESSAGE
fields can have subfields (such as
MaximizeConversions
which has three:
target_cpa_micros
,
cpc_bid_ceiling_micros
, and cpc_bid_floor_micros
), or they can have none
at all (such as ManualCpm
).
Message fields with no defined subfields
When updating a MESSAGE
field that is not defined with any subfields, use
the FieldMaskUtil to generate a field mask, as described above.
Message fields with defined subfields
When updating a MESSAGE
field that is defined with subfields without
explicitly setting any of the subfields on that message, you must manually
add each of the mutable MESSAGE
subfields to the FieldMask
, similar to
the example above that creates a field mask from scratch.
One common example is updating a campaign's bidding strategy without setting any
of the fields on the new bidding strategy. The example below demonstrates how to
update a campaign to use the
MaximizeConversions
bidding strategy
without setting any of the subfields on the bidding strategy.
In this case, using the allSetFieldsOf()
and compare()
methods of the
FieldMaskUtil does not achieve the intended goal.
The following example generates a field mask that includes
maximize_conversions
. However, the Google Ads API doesn't allow for this behavior to
prevent accidentally clearing fields and produces a
FieldMaskError.FIELD_HAS_SUBFIELDS
error.
// Creates a campaign with the proper resource name and an empty
// MaximizeConversions field.
Campaign campaign = Campaign.newBuilder()
.setResourceName(ResourceNames.campaign(customerId, campaignId))
.setMaximizeConversions(MaximizeConversions.newBuilder().build())
.build();
// Constructs an operation, using the FieldMasks' allSetFieldsOf utility to
// derive the update mask. The field mask will include 'maximize_conversions`,
// which will produce a FieldMaskError.FIELD_HAS_SUBFIELDS error.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaign)
.setUpdateMask(FieldMasks.allSetFieldsOf(campaign))
.build();
// Sends the operation in a mutate request that will result in a
// FieldMaskError.FIELD_HAS_SUBFIELDS error because empty MESSAGE fields cannot
// be included in a field mask.
MutateCampaignsResponse response =
campaignServiceClient.mutateCampaigns(
customerId.toString(), Collections.singletonList(operation));
The following example demonstrates how to properly update a campaign to use the
MaximizeConversions
bidding strategy without setting any of its subfields.
// Creates a Campaign object with the proper resource name.
Campaign campaign = Campaign.newBuilder()
.setResourceName(ResourceNames.campaign(customerId, campaignId))
.build();
// Creates a field mask from the existing campaign and adds all of the mutable
// fields (only one in this case) on the MaximizeConversions bidding strategy to
// the field mask. Because this field is included in the field mask but
// excluded from the campaign object, the Google Ads API will set the campaign's
// bidding strategy to a MaximizeConversions object without any of its subfields
// set.
FieldMask fieldMask = FieldMasks.allSetFieldsOf(campaign)
.toBuilder()
// Only include 'maximize_conversions.target_cpa_micros' in the field mask
// as it is the only mutable subfield on MaximizeConversions when used as a
// standard bidding strategy.
//
// Learn more about standard and portfolio bidding strategies here:
// https://developers.google.com/google-ads/api/docs/campaigns/bidding/assign-strategies
.addPaths("maximize_conversions.target_cpa_micros")
.build();
// Creates an operation to update the campaign with the specified fields.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaign)
.setUpdateMask(fieldMask)
.build();
Clearing Fields
Some fields can be explicitly cleared. Similar to the example above, you must
explicitly add these fields to the field mask. For example, assume you have a
campaign that uses a MaximizeConversions
bidding strategy and that the
target_cpa_micros
field is set with a value that is greater than 0.
The following code runs; however, the maximize_conversions.target_cpa_micros
won't be added to the field mask and so no changes are made to the
target_cpa_micros
field:
// Creates a campaign with the proper resource name and a MaximizeConversions
// object with target_cpa_micros set to 0.
Campaign campaign =
Campaign.newBuilder()
.setResourceName(ResourceNames.campaign(customerId, campaignId))
.setMaximizeConversions(
MaximizeConversions.newBuilder().setTargetCpa(0).build())
.setStatus(CampaignStatus.PAUSED)
.build();
// Constructs an operation, using the FieldMasks' allSetFieldsOf utility to
// derive the update mask. However, the field mask will NOT include
// 'maximize_conversions.target_cpa_micros'.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaign)
.setUpdateMask(FieldMasks.allSetFieldsOf(campaign))
.build();
// Sends the operation in a mutate request that will succeed but will NOT update
// the 'target_cpa_micros' field because
// 'maximize_conversions.target_cpa_micros' was not included in the field mask.
MutateCampaignsResponse response =
campaignServiceClient.mutateCampaigns(
customerId.toString(), Collections.singletonList(operation));
The next example demonstrates how to properly clear the target_cpa_micros
field on the MaximizeConversions
bidding strategy.
// Creates a Campaign object with the proper resource name.
Campaign campaign = Campaign.newBuilder()
.setResourceName(ResourceNames.campaign(customerId, campaignId))
.build();
// Constructs a field mask from the existing campaign and adds the
// 'maximize_conversions.target_cpa_micros' field to the field mask, which will
// clear this field from the bidding strategy without impacting any other fields
// on the bidding strategy.
FieldMask fieldMask = FieldMasks.allSetFieldsOf(campaign)
.toBuilder()
.addPaths("maximize_conversions.target_cpa_micros")
.build();
// Creates an operation to update the campaign with the specified field.
CampaignOperation operation =
CampaignOperation.newBuilder()
.setUpdate(campaign)
.setUpdateMask(fieldMask))
.build();
Note that the "incorrect" example above does work as intended for fields that
are defined as optional
in the Google Ads API
protocol buffers
.
But since the
target_cpa_micros
is not an optional
field, the "incorrect" example does not update the
bidding strategy to clear the target_cpa
field.