Update league min-max
Update live, today and early of the league's bet limit.
*** Just only "COMPANY" position can use this API. Please check your "agentUsername" and "key"
Request
POST/v0.1/min-max
Parameter | Type | Description |
---|---|---|
leagueId | String | League Id |
today | MinMaxMarket | Bet limit of today |
early | MinMaxMarket | Bet limit of early match |
live | MinMaxMarket | Bet limit of live |
Response
Parameter | Type | Description |
---|---|---|
code | Number | Error code |
data | MinMaxLeague[] | Bet limit of all leagues |
Example
Request
POST/v0.1/min-max
Request
{
"leagueId":"40207",
"live": {
"OU": {
"min": 100
}
}
}
Response
{
"code": 0,
"data": [
{
"_id": "61122a72b21fa75a30a67723",
"leagueId": "40207",
"leagueName": {
"en": "Germany Bundesliga",
"th": "เยอรมนี บุนเดสลีก้า",
"cn": "德国足球甲级联赛",
"tw": "Germany Bundesliga"
},
"today": {
"AH": {
"min": 18,
"max": 400000
},
"OU": {
"min": 20,
"max": 350000
},
"X12": {
"min": 20,
"max": 150000
},
"OE": {
"min": 20,
"max": 150000
},
"AH1ST": {
"min": 20,
"max": 150000
},
"OU1ST": {
"min": 20,
"max": 150000
},
"X121ST": {
"min": 20,
"max": 100000
},
"OE1ST": {
"min": 20,
"max": 100000
},
"perMatch": 1000000
},
"early": {
"AH": {
"min": 20,
"max": 170000
},
"OU": {
"min": 20,
"max": 15000
},
"X12": {
"min": 20,
"max": 30000
},
"OE": {
"min": 20,
"max": 30000
},
"AH1ST": {
"min": 20,
"max": 80000
},
"OU1ST": {
"min": 20,
"max": 80000
},
"X121ST": {
"min": 20,
"max": 10000
},
"OE1ST": {
"min": 20,
"max": 10000
},
"perMatch": 1000000
},
"live": {
"AH": {
"min": 20,
"max": 400000
},
"OU": {
"min": 100,
"max": 300000
},
"X12": {
"min": 20,
"max": 50000
},
"OE": {
"min": 20,
"max": 50000
},
"AH1ST": {
"min": 20,
"max": 50000
},
"OU1ST": {
"min": 20,
"max": 50000
},
"X121ST": {
"min": 20,
"max": 20000
},
"OE1ST": {
"min": 20,
"max": 50000
},
"perMatch": 1000000
}
},
]
}