BizKitHub
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

JSON body

Request body

application/json
productCodestringRequired

Source product code to copy from.

Examplemy-product
namestringRequired

Name for the new product.

Length: 1
ExampleMy Product Copy
codestringRequired

Code for the new product (must be unique).

Length: 1
Examplemy-product-copy
eanstringOptional

EAN barcode for the new product.

Example8594000000123

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the product was copied.

codestringRequired

Code of the new product.

slugstringRequired

URL slug of the new product.

Response example

application/json
{
  "success": false,
  "code": "example_code",
  "slug": "example_slug"
}

Request example

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"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key