BatchError Data Object
Defines an error object that identifies the item within the batch of items in the request message that caused the operation to fail, and describes the reason for the failure.
<xs:complexType name="BatchError"> <xs:sequence> <xs:element minOccurs="0" name="Code" type="xs:int" /> <xs:element minOccurs="0" name="Details" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="ErrorCode" nillable="true" type="xs:string" /> <xs:element minOccurs="0" name="Index" type="xs:int" /> <xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" /> </xs:sequence> </xs:complexType>
Elements
Element | Description | Data Type |
|---|---|---|
Code | A numeric error code that identifies the error. | int |
Details | A message that provides additional details about the batch error. This string can be empty. | string |
ErrorCode | A symbolic string constant that identifies the error. For example, UserIsNotAuthorized. | string |
Index | The zero-based index of the item in the batch of items in the request message that failed. | int |
Message | A message that describes the error. | string |