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

    Interface GetDetailResponseData

    GetDetailResponseData sub-interface for GetDetailResponse

    interface GetDetailResponseData {
        declare_date?: string;
        first_mile_tracking_number?: string;
        logistics_channel_id?: number;
        more?: boolean;
        next_cursor?: string;
        order_list?: GetDetailOrder[];
        shipment_method?: string;
        status?: string;
    }
    Index

    Properties

    declare_date?: string

    The specified delivery date.

    first_mile_tracking_number?: string

    The first-mile tracking number.

    logistics_channel_id?: number

    The identity of logistic channel.

    more?: boolean

    This is to indicate whether the item list is more than one page. If this value is true, you may want to continue to check next page to retrieve the rest of items.

    next_cursor?: string

    If more is true, you should pass the next_cursor in the next request as cursor. The value of next_cursor will be empty string when more is false.

    order_list?: GetDetailOrder[]

    The list of order.

    shipment_method?: string

    The shipment method for bound orders, should be pickup or dropoff.

    status?: string

    The logistics status for first-mile tracking number. Status could be: NOT_AVAILABLE,ORDER_CREATED,PICKED_UP,DELIVERED,ORDER_RECEIVED,CANCELING,CANCELED.NOT_AVAILABLE status means that either of the two scenarios has happened:1. First Mile Tracking Number in the request does not exist. (e.g., wrong format)2. First Mile Tracking Number is not yet bound with any order.