<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/BulkItemResultKeyword",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:BulkItemResultKeyword"
  },
  "title" : "BulkItemResultKeyword"
}
-->

# BulkItemResultKeyword

A bulk operation result item that includes the affected Keyword entity.

```
object BulkItemResultKeyword
```

## Discussion

The `BulkItemResultKeyword` object extends [`BulkItemResult`](/documentation/Apple-Ads-Platform-API/BulkItemResult) with a typed `result` field containing the `Keyword` object the operation created or updated. This type appears as array items in `KeywordCreateBulkResponse` and `KeywordUpdateBulkResponse`.

On success, `result` contains the full `Keyword` entity as it exists after the operation. On failure, `success` is `false` and `error` carries per-item details.

### Example

```json
{
  "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"
  }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)