Information about a rejected shipping service

RejectedShippingService

interface RejectedShippingService {
    CarrierName: string;
    RejectionReasonCode: string;
    RejectionReasonMessage?: string;
    ShippingServiceId: string;
    ShippingServiceName: string;
}

Properties

CarrierName: string

The rejected shipping carrier name. For example, USPS.

RejectedShippingService

RejectionReasonCode: string

A reason code meant to be consumed programatically. For example, CARRIER_CANNOT_SHIP_TO_POBOX.

RejectedShippingService

RejectionReasonMessage?: string

A localized human readable description of the rejected reason.

RejectedShippingService

ShippingServiceId: string

An Amazon-defined shipping service identifier.

RejectedShippingService

ShippingServiceName: string

The rejected shipping service localized name. For example, FedEx Standard Overnight.

RejectedShippingService