NegativeKeywordCreate
The request body for creating a new negative keyword.
Declaration
object NegativeKeywordCreateProperties
| Name | Type | Description |
|---|---|---|
campaignId | int64 | Scopes this negative keyword to a specific campaign. Required for campaign-level negatives when calling |
adGroupId | int64 | Scopes this negative keyword to a specific ad group. Required for ad group-level negatives when calling |
text Required | string | The keyword text to exclude. Immutable after creation. To correct it, delete the existing record and create a new one. |
matchType | NegativeKeywordCreate.MatchType | The match type for this negative keyword. See KeywordMatchType. Defaults to |
status | NegativeKeywordCreate.Status | Whether this negative keyword is active. See NegativeKeywordStatus. Defaults to |
Discussion
The NegativeKeywordCreate object is the request payload for adding a negative keyword to a campaign or ad group.
Example
{
"campaignId": 123456789,
"text": "AwayFinder competitor app",
"matchType": "PHRASE",
"status": "ENABLED"
}