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

# KeywordUpdateBulkResponse

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

```
object KeywordUpdateBulkResponse
```

## Discussion

The bulk keyword update endpoint returns `KeywordUpdateBulkResponse` as its response envelope. The response populates `error` only when the system rejects the overall request before processing any items.

### Example

```json
{
  "result": [
    {
      "correlationId": 0,
      "operation": "UPDATE",
      "success": true,
      "result": {
        "id": 888999000,
        "adAccountId": 123456789,
        "campaignId": 444555666,
        "adGroupId": 555666777,
        "text": "photo editor",
        "matchType": "EXACT",
        "bid": {
          "amount": "3.00",
          "currency": "USD"
        },
        "status": "ENABLED",
        "displayStatus": "RUNNING",
        "deleted": false,
        "creationTime": "2025-06-01T10:00:00.000",
        "modificationTime": "2025-06-15T09:00:00.000"
      }
    },
    {
      "correlationId": 1,
      "operation": "UPDATE",
      "success": false,
      "result": null,
      "error": {
        "code": "INVALID_BID",
        "message": "Bid amount is below the minimum allowed value.",
        "details": []
      }
    }
  ]
}
```

---

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)