Contents

NegativeKeywordUpdateBulkRequestItem

A single item in a negative-keyword bulk-update request.

Declaration

object NegativeKeywordUpdateBulkRequestItem

Properties

NameTypeDescription
correlationIdint64

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

data RequiredBulkNegativeKeywordUpdate

The negative keyword fields to update. See BulkNegativeKeywordUpdate.

Discussion

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

Example

{
  "correlationId": 123456789,
  "data": {
    "id": 987654321,
    "status": "PAUSED"
  }
}

See Also