Send payoff for winnings.
Request
Body Params application/json
{
"txId": "string",
"tileId": "string",
"tableId": "string",
"live": true,
"gameType": "BACCARAT",
"gameId": "string",
"gameCode": "string",
"minBet": 0,
"maxBet": 0,
"totalPayoffAmount": 0,
"totalBetAmount": 0,
"payoffs": [
{
"betType": "string",
"betAmount": 0,
"payoffAmount": 0,
"refTxIds": [
"string"
]
}
]
}
Request samples
curl --location --request POST '/payoff' \
--header 'Content-Type: application/json' \
--data-raw '{
"txId": "string",
"tileId": "string",
"tableId": "string",
"live": true,
"gameType": "BACCARAT",
"gameId": "string",
"gameCode": "string",
"minBet": 0,
"maxBet": 0,
"totalPayoffAmount": 0,
"totalBetAmount": 0,
"payoffs": [
{
"betType": "string",
"betAmount": 0,
"payoffAmount": 0,
"refTxIds": [
"string"
]
}
]
}'
Responses
application/json {
"txId": "string",
"balance": 0
}
Modified at 2024-07-25 08:05:01