Skip to main content
PATCH
/
brokerage-fees
/
{brokerageFeeId}
Update brokerage fee
curl --request PATCH \
  --url https://api.example.com/brokerage-fees/{brokerageFeeId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "minCommission": 50,
  "maxCommission": 50,
  "defaultCommission": 50,
  "minCommissionLimit": 50,
  "maxCommissionLimit": 50,
  "minTotalCommission": 50,
  "maxTotalCommission": 50,
  "minManagementFee": 1,
  "maxManagementFee": 1
}
'
{}

Path Parameters

brokerageFeeId
string
required

Body

application/json
minCommission
number

Min commission fee percentage

Required range: 0 <= x <= 100
maxCommission
number

Max commission fee percentage

Required range: 0 <= x <= 100
defaultCommission
number

Default commission fee percentage

Required range: 0 <= x <= 100
minCommissionLimit
number

Min commission fee percentage limit

Required range: 0 <= x <= 100
maxCommissionLimit
number

Max commission fee percentage limit

Required range: 0 <= x <= 100
minTotalCommission
number

Min total commission fee percentage

Required range: 0 <= x <= 100
maxTotalCommission
number

Max total commission fee percentage

Required range: 0 <= x <= 100
minManagementFee
number

Min management fee amount in cents

Required range: x >= 0
maxManagementFee
number

Max management fee amount in cents

Required range: x >= 0

Response

The response is of type object.