The response schema for the bulk scheduling API. It returns by the bulk scheduling API containing an array of the scheduled packtages, an optional list of orders we couldn't schedule with the reason, and a pre-signed URL for a ZIP file containing the associated shipping labels plus the documents enabled for your marketplace.

CreateScheduledPackagesResponse

interface CreateScheduledPackagesResponse {
    printableDocumentsUrl?: string;
    rejectedOrders?: RejectedOrder[];
    scheduledPackages?: Package[];
}

Properties

printableDocumentsUrl?: string

A pre-signed URL for the zip document containing the shipping labels and the documents enabled for your marketplace.

CreateScheduledPackagesResponse

rejectedOrders?: RejectedOrder[]

A list of orders we couldn't scheduled on your behalf. Each element contains the reason and details on the error.

CreateScheduledPackagesResponse

scheduledPackages?: Package[]

A list of packages. Refer to the Package object.

CreateScheduledPackagesResponse