Parameters
commission
dictionary
title
string
type
string
default_value
number
active
boolean
commission_data
array
PUT/
bash
curl https://api.tradly.app/ \
-H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
-H "Content-Type: application/json" \
-X PUT \
-d '{
"commission": {
"title": "commission 5",
"type": "supply",
"default_value": 15,
"active": false,
"commission_data": [
{
"category": [
243
],
"type": 1,
"fixed_value": 18.9
},
{
"category": [
244
],
"type": 2,
"slab_value": [
{
"from": 1,
"to": 100,
"value": 25
},
{
"from": 102,
"to": 130,
"value": 15
},
{
"from": 151,
"to": -1,
"value": 20
}
]
}
]
}
}'RESPONSE
json
{
"status": true,
"data": {
"commission": {
"id": 1
}
}
}