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

    Interface GetCommentRequest

    Request parameters for get_comment

    Use this api to get comment by shop_id, item_id, or comment_id, get up to 1000 comments.

    interface GetCommentRequest {
        comment_id?: number;
        cursor: string;
        item_id?: number;
        page_size: number;
    }
    Index

    Properties

    comment_id?: number

    The identity of comment.

    cursor: string

    Specifies the starting entry of data to return in the current call. Default is "". If data is more than one page, the offset can be some entry to start next call.

    item_id?: number

    The identity of product item.

    page_size: number

    Each result set is returned as a page of entries. Use the "page_size" filters to control the maximum number of entries to retrieve per page (i.e., per call). This integer value is used to specify the maximum number of entries to return in a single "page" of data. The limit of page_size if between 1 and 100.