DocsAPI ReferenceProduct/bff/product/product-copy
postProductAdmin BFF

/bff/product/product-copy

Creates a copy of an existing product with a new name, code, and optional EAN. Copies all properties, custom fields, variants, gallery images, category relations, and translations.

ProductpostBffProductProduct-copy

Parameters

4 body

4 total
Body · 4
productCodestringRequired

Source product code to copy from.

namestringRequired

Name for the new product.

Length: 1
codestringRequired

Code for the new product (must be unique).

Length: 1
eanstring

EAN barcode for the new product.

Request

POST /bff/product/product-copy

post
curl -X POST "https://api.bizkithub.com/bff/product/product-copy" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "productCode": "my-product",
  "name": "My Product Copy",
  "code": "my-product-copy",
  "ean": "8594000000123"
}'

Response

JSON payload

{
  "success": false,
  "code": "example_code",
  "slug": "example_slug"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key