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

# NegativeKeywordCreateBulkRequest

A bulk request to create multiple negative keywords.

## Declaration

```data
object NegativeKeywordCreateBulkRequest
```

## 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 create. Each item has the shape { correlationId: int64, data: BulkNegativeKeywordCreate }.

## Discussion

Discussion The NegativeKeywordCreateBulkRequest object allows creating multiple negative keywords in a single API call. Example {   "allowPartialSuccess": true,   "items": [     {       "correlationId": 123456789,       "data": {         "campaignId": 987654321,         "adGroupId": 555666777,         "text": "free AwayFinder",         "matchType": "BROAD",         "status": "ENABLED"       }     },     {       "correlationId": 123456790,       "data": {         "campaignId": 987654321,         "adGroupId": null,         "text": "AwayFinder discount",         "matchType": "EXACT",         "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)
- [NegativeKeywordCreateBulkResponse](apple-ads-platform-api/negativekeywordcreatebulkresponse.md)
- [NegativeKeywordUpdateBulkRequest](apple-ads-platform-api/negativekeywordupdatebulkrequest.md)
- [NegativeKeywordUpdateBulkResponse](apple-ads-platform-api/negativekeywordupdatebulkresponse.md)
- [BulkKeywordCreate](apple-ads-platform-api/bulkkeywordcreate.md)
- [BulkKeywordUpdate](apple-ads-platform-api/bulkkeywordupdate.md)
