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

# KeywordCreateBulkResponse

The response from a bulk Keyword creation request, containing results for each item.

## Declaration

```data
object KeywordCreateBulkResponse
```

## Properties

result: Array of per-item keyword creation results, one entry per item in the original request. Each entry includes correlationId, operation, success, and on success the created Keyword entity. Use correlationId to match each entry back to its corresponding request item. See BulkItemResultKeyword. Read-only. error: See Error. Read-only.

## Discussion

Discussion The KeywordCreateBulkResponse object is the response envelope returned by the bulk keyword creation endpoint. The response populates error only when the system rejects the overall request before processing any items. Example {   "result": [     {       "correlationId": 0,       "operation": "CREATE",       "success": true,       "result": {         "id": 888999000,         "adAccountId": 123456789,         "campaignId": 444555666,         "adGroupId": 555666777,         "text": "photo editor",         "matchType": "EXACT",         "bid": {           "amount": "2.50",           "currency": "USD"         },         "status": "ENABLED",         "deleted": false,         "creationTime": "2025-06-01T10:00:00.000",         "modificationTime": "2025-06-01T10:00:00.000"       }     }   ] }

## 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)
- [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)
- [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)
