Describes an error that occurred while processing a document in a batch. The operation returns on BatchItemError object for each document that contained an error.

interface BatchItemError {
    ErrorCode?: string;
    ErrorMessage?: string;
    Index?: number;
}

Properties

ErrorCode?: string

The numeric error code of the error.

ErrorMessage?: string

A text description of the error.

Index?: number

The zero-based index of the document in the input list.