Contents

BaseBulkRequest

Base type for all bulk operation requests.

Declaration

object BaseBulkRequest

Properties

NameTypeDescription
allowPartialSuccessboolean

If true, the batch continues processing without rolling back successful operations even when individual items fail. Per-item error details appear in the response. If false, any failure rejects the entire batch.

Discussion

The BaseBulkRequest object is the common base type extended by all typed bulk request objects (KeywordCreateBulkRequest, NegativeKeywordUpdateBulkRequest, etc.) and by BulkOperationRequest. It carries the allowPartialSuccess flag that controls batch failure behavior.

Example

{
  "allowPartialSuccess": true
}

See Also