---
title: NegativeKeywordUpdateBulkRequest
framework: Apple Ads Platform API
role: symbol
role_heading: Object
platforms: [apple ads platform api 1.0+]
path: apple-ads-platform-api/negativekeywordupdatebulkrequest
---

# NegativeKeywordUpdateBulkRequest

A bulk request to update multiple negative keywords.

## Declaration

```data
object NegativeKeywordUpdateBulkRequest
```

## Properties

allowPartialSuccess: If true, allows some operations in the batch to succeed. Other operations can still fail without blocking the successful ones. items: Array of bulk item objects to update. Each item has the shape { correlationId: int64, data: BulkNegativeKeywordUpdate }. The id field is required in BulkNegativeKeywordUpdate.

## Discussion

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

- [BaseBulkRequest](apple-ads-platform-api/basebulkrequest.md)
- [BulkOperationRequest](apple-ads-platform-api/bulkoperationrequest.md)
- [BulkItemResult](apple-ads-platform-api/bulkitemresult.md)
- [BulkItemResultKeyword](apple-ads-platform-api/bulkitemresultkeyword.md)
- [BulkItemResultNegativeKeyword](apple-ads-platform-api/bulkitemresultnegativekeyword.md)
- [BulkResponse](apple-ads-platform-api/bulkresponse.md)
- [KeywordCreateBulkRequest](apple-ads-platform-api/keywordcreatebulkrequest.md)
- [KeywordCreateBulkResponse](apple-ads-platform-api/keywordcreatebulkresponse.md)
- [KeywordUpdateBulkRequest](apple-ads-platform-api/keywordupdatebulkrequest.md)
- [KeywordUpdateBulkResponse](apple-ads-platform-api/keywordupdatebulkresponse.md)
- [NegativeKeywordCreateBulkRequest](apple-ads-platform-api/negativekeywordcreatebulkrequest.md)
- [NegativeKeywordCreateBulkResponse](apple-ads-platform-api/negativekeywordcreatebulkresponse.md)
- [NegativeKeywordUpdateBulkResponse](apple-ads-platform-api/negativekeywordupdatebulkresponse.md)
- [BulkKeywordCreate](apple-ads-platform-api/bulkkeywordcreate.md)
- [BulkKeywordUpdate](apple-ads-platform-api/bulkkeywordupdate.md)
