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

# BulkItemResult

The base result envelope for a single item in a bulk operation response.

```
object BulkItemResult
```

## Discussion

The `BulkItemResult` object is the shared result wrapper that the API returns for each item in a bulk create, update, or delete response. It extends the standard `Response` envelope with per-item operation metadata. All keyword and negative keyword bulk response types extend this schema by adding a typed `result` field.

When `allowPartialSuccess` is `true` in the request, inspect `success` on each entry individually. A `false` value indicates that the specific item failed.

### Example

```json
{
  "correlationId": 2,
  "operation": "UPDATE",
  "success": false,
  "error": {
    "code": "INVALID_FIELD",
    "message": "bid.amount must be greater than 0",
    "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)