1. Base 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. Base API

Kick Player

POST
/capi/game/kick-player
Kick a player from all active game sessions. Deletes all session tokens and publishes invalidation events.
Signature fields: playerUsername

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Player kicked successfully. All active game sessions invalidated.
Bodyapplication/json

🟠400Bad Request
🟠403Forbidden
🟠404Not Found
🔴500Server Error
🔴503Service Unavailable
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/capi/game/kick-player' \
--header 'X-PUBLIC-KEY;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'Accept-Language;' \
--header 'Content-Type: application/json' \
--data '{
    "playerUsername": "johndoe123"
}'
Response Response Example
200 - Success
{
    "status": "0000",
    "msg": "Success."
}
Modified at 2026-08-21 16:34:36
Previous
Start Game
Next
Update Status Player
Built with