BizKitHub
DocsAPI ReferenceTariff/bff/tariff/set-discount
postTariffAdmin BFF

/bff/tariff/set-discount

Sets a discount or custom price override on an organisation tariff assignment. Kept for backwards compatibility. New integrations should use /tariff/set-billing.

TariffpostBffTariffSet-discount

Parameters

JSON body

Request body

application/json
organisationSlugstringRequired

Slug of the target organisation.

Examplemy-shop
discountPercentnumberOptional

Discount percentage (0-100).

Example10
customPriceOverridenumber | nullOptional

Custom price override in CZK (null to remove). Prefer /tariff/set-billing.

One of 2:
Variant 1
number
Variant 2
null
notestringOptional

Admin note.

Response schema

1 status code documented

200Success
successbooleanRequired

Response example

application/json
{
  "success": false
}

Request example

POST /bff/tariff/set-discount

post
curl -X POST "https://api.bizkithub.com/bff/tariff/set-discount" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "organisationSlug": "my-shop",
  "discountPercent": 10,
  "note": "example_note"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key