Parameters
JSON body
Request body
application/jsonproductCodestringRequiredProduct code to restore.
Length: 1–∞
Example
my-productClears deleted_date and the legacy deleted boolean. active is intentionally NOT flipped back to true — the operator should re-publish explicitly so a stale catalogue does not silently come back online.
JSON body
productCodestringRequiredProduct code to restore.
my-product1 status code documented
successbooleanRequiredcodestringRequiredProduct code (echoed back for client refetch).
alreadyLivebooleanRequiredtrue if the product was not soft-deleted (no-op restore).
{
"success": false,
"code": "example_code",
"alreadyLive": false
}POST /bff/product/product-restore
curl -X POST "https://api.bizkithub.com/bff/product/product-restore" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"productCode": "my-product"
}'All BizKitHub public API endpoints require authentication via API key.