Shopee SDK API Reference - v1.11.0
    Preparing search index...

    Interface GetShipmentListResponse

    Response for getting shipment list

    interface GetShipmentListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            more: boolean;
            next_cursor: string;
            order_list: ShipmentOrder[];
        };
        result?: {
            more: boolean;
            next_cursor: string;
            order_list: ShipmentOrder[];
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string
    message: string
    request_id: string
    response: { more: boolean; next_cursor: string; order_list: ShipmentOrder[] }

    Type Declaration

    • more: boolean

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

    • 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: ShipmentOrder[]

      The list of shipment orders

    result?: { more: boolean; next_cursor: string; order_list: ShipmentOrder[] }

    Type Declaration

    • more: boolean

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

    • 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: ShipmentOrder[]

      The list of shipment orders