Skip to content

Edit User Bet Limit

The Edit User Bet Limit endpoint allows you to modify the minimum and maximum betting limits for a specific user.

fetch('https://API-PLATFORM/edit-betlimit', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
},
body: JSON.stringify({
user_id: '',
currency: 'KRW',
bet_n_min: 0,
bet_n_max: 0
})
})

ParameterTypeRequiredDescription
user_idstringYour player’s unique identifier
currencystringGame currency (KRW, JPY, CNY, PHP, HKD, MYR, THB, EUR, TWD, VND, INR, BDT, USD, USDT, USDS)
bet_n_minnumberMinimum bet for Natural (Banker/Player). Min: 0, Default: 0
bet_n_maxnumberMaximum bet for Natural (Banker/Player). Min: 0, Default: 0


Successful Response

interface BetLimitResponse {
code: number
}

📌
For a comprehensive guide on how this works, please refer to the Common and Transfer Introduction or Seamless Introduction sections within the Introduction page.