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

    Interface GetItemListResponse

    Response for get item list API

    interface GetItemListResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            has_next_page: boolean;
            item: ItemListItemInfo[];
            next_offset: number;
            total_count: number;
        };
        warning?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    error: string

    Error code if any error occurred

    message: string

    Error message if any error occurred

    request_id: string

    The identifier for an API request for error tracking

    response: {
        has_next_page: boolean;
        item: ItemListItemInfo[];
        next_offset: number;
        total_count: number;
    }

    Type Declaration

    • has_next_page: boolean

      Indicates whether there are more items to retrieve.

    • item: ItemListItemInfo[]

      List of item info with item_id, item_status, update_time.

    • next_offset: number

      If has_next_page is true, use this value for the next request's offset.

    • total_count: number

      Total count of all items.

    warning?: string

    Warning details if any.