bulk_create_product_reviews
Batch create multiple product reviews to import historical reviews or backfill after promotions.
Instructions
[WRITE] 批次建立多筆商品評論。
【用途】 一次性批次建立多筆商品評論,適用於大量匯入歷史評論或促銷活動後的評論補登。
【呼叫的 Shopline API】
POST /v1/product_review_comments/bulk
【回傳結構】 dict 含 success: bool, resource_id: str, message: str, result: dict。
【副作用】
批次在商品評論列表中新增多筆評論
依商店設定,評論可能立即公開或待審核
影響相關商品的平均評分顯示
部分評論若格式錯誤,整批可能失敗或僅失敗該筆(視 API 實作而定)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reviews | Yes | 評論資料列表,每筆格式同 create_product_review,例如 [{"product_id": "P001", "rating": 5, "content": "讚!"}] |