Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface GetMassShippingParameterRequest

    Request parameters for get_mass_shipping_parameter

    Use this api to check if package support pickup, dropoff, non-integrated. For pickup, return address and pickup time id options. For dropoff, return branch id, sender real name, etc. Can batch request for packages under same product_location_id and logistics_channel_id. [Please call it when packages meet: 1) fulfillment status is LOGISTICS_READY; or 2) fulfillment status is LOGISTICS_PICKUP_RETRY; or 3) fulfillment status is LOGISTICS_REQUEST_CREATED and meet Instant Order Reschedule conditions]

    interface GetMassShippingParameterRequest {
        logistics_channel_id?: number;
        package_list: GetMassShippingParameterPackage[];
        product_location_id?: string;
    }
    Index

    Properties

    logistics_channel_id?: number

    The API can only batch request the shipping parameter for multiple packages under the same product_location_id and same logistics_channel_id. Use this field to specify the logistics_channel_id for the request. If not specified, will use the logistics_channel_id corresponds to the first package_number by default.

    The list of packages you want to get shipping parameters. limit [1, 50].

    product_location_id?: string

    The API can only batch request the shipping parameter for multiple packages under the same product_location_id and same logistics_channel_id. Use this field to specify the product_location_id for the request. If not specified, will use the product_location_id corresponds to the first package_number by default.