Request
Body Params application/json
{
"txId": "string",
"tileId": "string",
"tableId": "string",
"live": true,
"gameType": "BACCARAT",
"gameId": "string",
"gameCode": "string",
"minBet": 1,
"maxBet": 500,
"totalBetAmount": 6,
"bets": [
{
"betType": "string",
"betAmount": 0,
"pays": 0
}
]
}
Request samples
curl --location --request POST '/bet' \
--header 'Content-Type: application/json' \
--data-raw '{
"txId": "string",
"tileId": "string",
"tableId": "string",
"live": true,
"gameType": "BACCARAT",
"gameId": "string",
"gameCode": "string",
"minBet": 1,
"maxBet": 500,
"totalBetAmount": 6,
"bets": [
{
"betType": "string",
"betAmount": 0,
"pays": 0
}
]
}'
Responses
application/json {
"txId": "string",
"balance": 0
}
Modified at 2024-07-25 08:05:01