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