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

    Interface UpdateTrackingStatusRequest

    Request parameters for update_tracking_status

    Only available for Brazil sellers. This API is only available for orders/parcels which are fulfilled by BR Seller Logistics channel (logistics_channel_id: 90021), Samsung (logistics_channel_id: 90025) and BR Instant Delivery channel (logistics_channel_id: 90026). The logistics_status will become LOGISTICS_REQUEST_CREATED after arrange shipment, and can call this API to update to: LOGISTICS_PICKUP_DONE, LOGISTICS_DELIVERY_DONE, LOGISTICS_DELIVERY_FAILED.

    interface UpdateTrackingStatusRequest {
        failed_reason?: string;
        logistics_status: string;
        order_sn: string;
        tracking_number?: string;
        tracking_url?: string;
    }
    Index

    Properties

    failed_reason?: string

    Only required when updating logistics_status to "logistics_delivery_failed". Only required for BR Instant Delivery channel (logistics_channel_id: 90026). Only accept the following values. - buyer_unreachable- buyer_unresponsive- no_delivery_location_consensus

    logistics_status: string

    Order status update support:- logistics_pickup_done- logistics_delivery_done- logistics_delivery_failed

    order_sn: string

    Shopee's unique identifier for an order.

    tracking_number?: string

    Order tracking number, might help seller to identify his order on the tracking_URL.Can only be sent when updating logistics_status to "logistic_pickup_done".

    tracking_url?: string

    Website's URL for order tracking with maximum length of 2048 characters.Can only be sent when updating logistics_status to "logistic_pickup_done".