DocsAPI ReferencePayment Gateway/bff/payment-gateway/commission-add
postPayment GatewayAdmin BFF

/bff/payment-gateway/commission-add

Add a commission period

Payment GatewaypostBffPayment-gatewayCommission-add

Parameters

7 body

7 total
Body · 7
codestringRequired

Gateway instance code the period belongs to.

fromDatestringRequired

Start of the validity period (inclusive), YYYY-MM-DD.

toDatestring | null

End of the validity period (inclusive). Omit or pass null for open-ended.

percentagenumberRequired

Commission rate in percent (e.g. 1.25 for 1.25 %). Must be >= 0.

monthlyFeenumber | null

Flat monthly fee charged in addition to the percentage. Null/0 = no flat fee.

monthlyFeeMinTurnovernumber | null

Charge the flat fee only when the month's gateway turnover reaches this value. Null = charge unconditionally. Ignored when monthlyFee is null/0.

notestring | null

Optional note (contract ref, reason).

Request

POST /bff/payment-gateway/commission-add

post
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.

Get API Key