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

Create Player

POST
/capi/game/create-player
Register a new player under the authenticated agent.
Signature fields: currency ,playerUsername

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Player created successfully
Bodyapplication/json

🟠400Bad Request
🟠403Forbidden
🟠409Conflict
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/capi/game/create-player' \
--header 'X-PUBLIC-KEY;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'Accept-Language;' \
--header 'Content-Type: application/json' \
--data '{
    "playerName": "John Doe",
    "playerUsername": "johndoe123",
    "currency": "USD"
}'
Response Response Example
200 - Success
{
    "status": "0000",
    "msg": "Success."
}
Modified at 2026-09-14 10:07:01
Previous
Game List
Next
Start Game
Built with