bee-products-delete

A product deletion skill based on the "Bee Website Builder" Open API. It is used to delete one or more products under a specified site language and supports batch deletion by product ID list.

Audits

Pass

Install

openclaw skills install bee-products-delete

bee-products-delete

Version: 2.0.2

Overview

Use the Bee Website Builder Open API to move one or more products to the recycle bin.

Supports batch deletion of product IDs under a specified language. Deleted products are moved to the recycle bin and can be restored there if deleted by mistake.


Input Parameters

api_key (string, Required)

API authentication key used to identify the caller and control interface access permissions.


language (string, Required)

Enabled site language.

⚠️ Must be selected manually from the list returned by bee-languages-get. AI inference or automatic generation is not allowed.


id_list (array of integers, Required)

Product ID list, up to 100 items. Matching products will be moved to the recycle bin.


Output Structure

Top-Level Structure

FieldTypeDescription
statusbooleanRequest status
msgstringResponse message
dataobject/nullReturned data

data

FieldTypeDescription
successarraySuccessfully recycled items
failarrayFailed deletion items

data.success[]

FieldTypeDescription
idintegerProduct ID
msgstringSuccess message

data.fail[]

FieldTypeDescription
idintegerProduct ID
msgstringFailure message

Dependencies

ParameterDependency skillField sourceMode
languagebee-languages-getlist[].languageselect

Usage Example

{
  "api_key": "your-api-key",
  "language": "en",
  "id_list": [
    18468028,
    18467384,
    18466967
  ]
}

Notes

  1. This delete action moves products to the recycle bin instead of permanently removing them.
  2. If a product is deleted by mistake, it can be restored from the recycle bin.

Response Example

{
  "status": true,
  "msg": "Deleted successfully",
  "data": {
    "success": [
      {
        "id": 18468028,
        "msg": "Deleted"
      }
    ],
    "fail": [
      {
        "id": 18467384,
        "msg": "Data not found"
      }
    ]
  }
}