Contents

BulkOperationRequest

Container for a bulk operation request.

Declaration

object BulkOperationRequest

Properties

NameTypeDescription
allowPartialSuccessboolean

If true, the request succeeds even if some items fail. Failed items return per-item errors. If false (the default), any single failure rejects the entire batch and populates the top-level error. Inherited from BaseBulkRequest.

items[BulkOperationRequestItem]

Array of operation items. Each item carries a correlationId (integer) for correlating with its result in BulkResponse.

Discussion

The BulkOperationRequest object is the generic request container for bulk create, update, and delete operations. It extends BaseBulkRequest and adds an items array.

Example

{
  "allowPartialSuccess": true,
  "items": [
    {
      "correlationId": 123456789
    },
    {
      "correlationId": 987654321
    }
  ]
}

See Also