Contents

NegativeKeywordUpdateBulkRequest

A bulk request to update multiple negative keywords.

Declaration

object NegativeKeywordUpdateBulkRequest

Properties

NameTypeDescription
allowPartialSuccessboolean

If true, allows some operations in the batch to succeed. Other operations can still fail without blocking the successful ones.

items[NegativeKeywordUpdateBulkRequestItem]

Array of bulk item objects to update. Each item has the shape { correlationId: int64, data: BulkNegativeKeywordUpdate }. The id field is required in BulkNegativeKeywordUpdate.

Discussion

The NegativeKeywordUpdateBulkRequest object allows updating multiple negative keywords in a single API call.

Example

{
  "allowPartialSuccess": true,
  "items": [
    {
      "correlationId": 123456789,
      "data": {
        "id": 987654321,
        "status": "PAUSED"
      }
    },
    {
      "correlationId": 223456789,
      "data": {
        "id": 555666777,
        "status": "ENABLED"
      }
    }
  ]
}

See Also