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

    Interface GetOrderListResponse

    Response for getting order list

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

    Hierarchy (View Summary)

    Index

    Properties

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

    Type Declaration

    • more: boolean

      Indicates whether the order list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor

    • order_list: OrderListItem[]

      List of orders

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

    Type Declaration

    • more: boolean

      Indicates whether the order list is more than one page

    • next_cursor: string

      If more is true, you should pass the next_cursor in the next request as cursor

    • order_list: OrderListItem[]

      List of orders