A delivery document for a package.

DeliveryDocument

interface DeliveryDocument {
    documentType: string;
    url?: string;
}

Properties

Properties

documentType: string

The delivery document type. Values are SIGNATURE and DELIVERY_IMAGE.

DeliveryDocument

url?: string

A URL that you can use to download the document. This URL has a Content-Type header. Note that the URL expires after one hour. To get a new URL, you must call the API again.

DeliveryDocument