Indicates the carrier details and their contact informations

CarrierDetails

interface CarrierDetails {
    code?: string;
    email?: string;
    name?: string;
    phone?: string;
    shipmentReferenceNumber?: string;
}

Properties

code?: string

Code that identifies the carrier for the shipment. The Standard Carrier Alpha Code (SCAC) is a unique two to four letter code used to identify a carrier. Carrier SCAC codes are assigned and maintained by the NMFTA (National Motor Freight Association).

CarrierDetails

email?: string

The field is used to represent the carrier Email id.

CarrierDetails

name?: string

The field is used to represent the carrier used for performing the shipment.

CarrierDetails

phone?: string

The field is used to represent the Carrier contact number.

CarrierDetails

shipmentReferenceNumber?: string

The field is also known as PRO number is a unique number assigned by the carrier. It is used to identify and track the shipment that goes out for delivery. This field is mandatory for US, CA, MX shipment confirmations.

CarrierDetails