Payment GatewaypostBffPayment-gatewayCommission-add
Parameters
7 body
Body · 7
codestringRequiredGateway instance code the period belongs to.
fromDatestringRequiredStart of the validity period (inclusive), YYYY-MM-DD.
toDatestring | nullEnd of the validity period (inclusive). Omit or pass null for open-ended.
percentagenumberRequiredCommission rate in percent (e.g. 1.25 for 1.25 %). Must be >= 0.
monthlyFeenumber | nullFlat monthly fee charged in addition to the percentage. Null/0 = no flat fee.
monthlyFeeMinTurnovernumber | nullCharge the flat fee only when the month's gateway turnover reaches this value. Null = charge unconditionally. Ignored when monthlyFee is null/0.
notestring | nullOptional note (contract ref, reason).
Request
POST /bff/payment-gateway/commission-add
curl -X POST "https://api.bizkithub.com/bff/payment-gateway/commission-add" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"code": "gopay-production",
"fromDate": "2026-01-01",
"toDate": "2026-12-31",
"percentage": 1.25,
"monthlyFee": 100,
"monthlyFeeMinTurnover": 50000
}'Response
JSON payload
{
"success": true,
"id": "example_id"
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.