BulkItemResult

Represents the result of a single item operation within a bulk action including success status, error messages, and returned data

Overview of BulkItemResult goes here.

BulkItemResult Properties

BulkItemResult

Field Type Inherited from Description
Action String BulkItemResult Result depends on the executed bulk action:
ErrorMessage String BulkItemResult Error message in case of negative outcome
Item BaseInfo BulkItemResult Only populated for successful actions that return an item
Key String BulkItemResult Key of the item the bulk action was performed on
Success Boolean BulkItemResult Success of the individual bulk action

JSON Structure of BulkItemResult

{
   "Action"	:	"String",
   "ErrorMessage"	:	"String",
   "Item"	:	"[BaseInfo](/object-model/baseinfo)",
   "Key"	:	"String",
   "Success"	:	"Boolean"
}