DocsAPI ReferenceProduct/bff/product/product-detail
getProductAdmin BFF

/bff/product/product-detail

Returns full product detail including all editable fields, custom fields, field definitions, and linked events. Translatable fields (name, descriptions) are resolved from the translation table with locale fallback.

ProductgetBffProductProduct-detail

Parameters

2 query

2 total
Query · 2
productCodestringRequired

Unique product code.

localestring

Locale code for translated fields. Falls back to primary locale if not provided.

Request

GET /bff/product/product-detail

get
curl -X GET "https://api.bizkithub.com/bff/product/product-detail?productCode=my-product&locale=cs" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "id": "example_id",
  "code": "example_code",
  "name": "example_name",
  "slug": "example_slug",
  "ean": "example_ean",
  "shortDescription": "example_shortDescription",
  "longDescription": "example_longDescription",
  "internalNote": "example_internalNote",
  "active": false,
  "deleted": false,
  "deletedDate": "example_deletedDate",
  "b2b": false,
  "showInFeed": false,
  "soldOut": false,
  "mainImageUrl": "example_mainImageUrl",
  "mainCategoryId": 0,
  "brandId": 0,
  "defaultCurrency": "example_defaultCurrency",
  "price": 0,
  "cost": 0,
  "standardPricePercentage": 0,
  "vat": 0,
  "sizeWidthMm": 0,
  "sizeHeightMm": 0,
  "sizeDepthMm": 0,
  "weightGrams": 0,
  "warehouseAllQuantity": 0,
  "warehouseLimit": 0,
  "isVariantProduct": false,
  "variantCount": 0,
  "customFields": [
    {
      "key": "example_key",
      "value": "example_value",
      "active": false
    }
  ],
  "customFieldsDefinition": [
    {
      "key": "example_key",
      "type": "example_type",
      "label": "example_label",
      "helperText": "example_helperText",
      "placeholder": "example_placeholder",
      "required": false,
      "validationPattern": "example_validationPattern"
    }
  ],
  "eventList": [
    {
      "id": "example_id",
      "title": "example_title",
      "isStorno": false,
      "typeCode": "example_typeCode",
      "typeLabel": "example_typeLabel",
      "typeColor": "example_typeColor"
    }
  ],
  "translatedLocales": [
    "string"
  ],
  "voucherTemplateCount": 0,
  "subscriptionPlanCount": 0,
  "pricelistRules": [
    {
      "id": "example_id",
      "name": "example_name",
      "enabled": false,
      "priority": 0,
      "price": 0
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key