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

    Interface GetOpenCampaignNotAddedProductResponse

    Response for get_open_campaign_not_added_product API

    interface GetOpenCampaignNotAddedProductResponse {
        error: string;
        message: string;
        request_id: string;
        response: {
            has_more: boolean;
            item_list: {
                item_id: number;
                item_name?: string;
                suggested_rate?: number;
            }[];
            next_cursor: string;
            total_count: number;
        };
        warning?: string
        | 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_more: boolean;
        item_list: { item_id: number; item_name?: string; suggested_rate?: number }[];
        next_cursor: string;
        total_count: number;
    }

    Type Declaration

    • has_more: boolean

      Whether there are more pages

    • item_list: { item_id: number; item_name?: string; suggested_rate?: number }[]

      List of products not added to open campaign

    • next_cursor: string

      Cursor for next page

    • total_count: number

      Total count of products

    warning?: string | string[]

    Warning message or list of warning messages