Selling Partner API SDK for JavaScript
    Preparing search index...

    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.

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

    Properties

    printableDocumentsUrl?: string

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

    rejectedOrders?: RejectedOrder[]

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

    scheduledPackages?: Package[]

    A list of packages. Refer to the Package object.