KeywordUpdate
The request body for updating an existing Keyword object.
Declaration
object KeywordUpdateProperties
| Name | Type | Description |
|---|---|---|
bid | Money | Per-keyword bid override as a |
status | KeywordUpdate.Status | Whether this keyword is active and eligible to serve. Values: |
Discussion
The KeywordUpdate object is the request payload for modifying an existing keyword. The request accepts only bid and status fields. You can’t include text or matchType in an update request. The schema doesn’t accept these fields.
Example
{
"bid": {
"amount": "2.50",
"currency": "USD"
},
"status": "ENABLED"
}