Hi,
Thank you for reaching out to the Google Ads API support team.
Could you please confirm if you are referring to negative keyword?
If so, you can refer to this
documentation on the different criteria that you can target/exclude at the campaign. At the campaign level, you can only exclude keywords and you will need to specify
negative = true on a keyword's
CampaignCriterion, and create it using the
CampaignCriterionService. You can use the
customers.campaignCriteria.mutate rest interface method to create, update and remove criteria. You may try the below sample request :
{
"operations": [
{
"create": {
"campaign": "customers/{customer_id}/campaigns/{campaign_id}",
"keyword": {
"matchType": "BROAD",
"text": "sample text"
},
"negative": true
}
}
]
}
If you are not looking for this, share the uncropped screenshot of the Google Ads UI by highlighting the feature you would like to add via the
Google Ads API.
