1. Seamless Wallet API
Hectic Play Integration
  • Getting Started
    • Introduction
    • Request and Response
    • Signature Guide — HMAC-SHA256
  • Base API
    • Game List
      POST
    • Create Player
      POST
    • Start Game
      POST
    • Kick Player
      POST
    • Update Status Player
      POST
  • Seamless Wallet API
    • Get Player Balance
      POST
    • Settle Round
      POST
    • Cancel Round
      POST
  • Report API
    • Get Bet Detail URL
      POST
  • Appendix
    • Game Supported Languages
    • Base API - Response Codes
    • Report API - Response Codes
    • Seamless Wallet Callback API — Response Codes
  • Game
  1. Seamless Wallet API

Cancel Round

POST
/cancelRound
Cancel a previously settled round and reverse the transaction.
The partner should refund the bet and deduct the payout from the player's wallet.
Signature data: {gameCode}:{roundID}:{currency}:{playerUsername}

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Cancel processed
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/cancelRound' \
--header 'Accept-Language;' \
--header 'X-PUBLIC-KEY;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'X-Request-ID;' \
--header 'Content-Type: application/json' \
--data '{
    "gameCode": "MJW",
    "roundID": "550e8400-e29b-41d4-a716-446655440000",
    "playerUsername": "johndoe123",
    "currency": "USD"
}'
Response Response Example
Round cancelled successfully
{
    "status": "0000",
    "balance": 1525.5
}
Modified at 2026-03-20 14:32:30
Previous
Settle Round
Next
Get Bet Detail URL
Built with