Execution errors associated with the outbound order. This field will be populated if the order failed validation.

OutboundExecutionError

interface OutboundExecutionError {
    failureCode: string;
    failureReasons: string[];
    sku?: string;
}

Properties

failureCode: string

Failure code details for the error.

OutboundExecutionError

failureReasons: string[]

Failure reasons for the error.

OutboundExecutionError

sku?: string

MSKU associated with the error.

OutboundExecutionError