Contents

KeywordUpdateBulkRequestItem

A single item in a keyword bulk-update request.

Declaration

object KeywordUpdateBulkRequestItem

Properties

NameTypeDescription
correlationIdint64

Client-supplied identifier used to correlate this item with its result in the response.

data RequiredBulkKeywordUpdate

The keyword fields to update. See BulkKeywordUpdate.

Discussion

The data object accepts only the fields defined on BulkKeywordUpdate, keeping each item’s payload identical in shape to a single-item update request.

Example

{
  "correlationId": 123456789,
  "data": {
    "id": 555666777,
    "bid": {
      "amount": "2.50",
      "currency": "USD"
    },
    "status": "ENABLED"
  }
}

See Also