Contents

KeywordUpdate

The request body for updating an existing Keyword object.

Declaration

object KeywordUpdate

Properties

NameTypeDescription
bidMoney

Per-keyword bid override as a Money object. See Money. Must be a valid Money value. null isn’t accepted and returns an error. Mutable.

statusKeywordUpdate.Status

Whether this keyword is active and eligible to serve. Values: ENABLED or PAUSED. See KeywordStatus. Mutable.

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"
}

Topics

Type Aliases

See Also