KeywordCreate
The request body for creating a new Keyword object.
Declaration
object KeywordCreateProperties
| Name | Type | Description |
|---|---|---|
adGroupId Required | int64 | The ad group this keyword targets. |
text Required | string | The keyword text as entered by the advertiser. Can’t be changed after creation. To change it, delete the keyword and create a new one. |
matchType | KeywordCreate.MatchType | The match type for this keyword. Values: |
bid | Money | Per-keyword bid override as a |
status | KeywordCreate.Status | Whether this keyword is active and eligible to serve. Values: |
Discussion
The KeywordCreate object is the request payload for adding a keyword to an ad group via POST /v1/keywords (Create a Keyword), after the ad group has already been created. The AdGroupCreate doesn’t support keywords inline. See the properties below for field-level requirements, mutability, and defaults.
Example
{
"adGroupId": 555666777,
"text": "photo editor",
"matchType": "EXACT",
"bid": {
"amount": "2.50",
"currency": "USD"
},
"status": "ENABLED"
}