Skip to main content

Appendix

This page lists all possible Status Codes and their Descriptions, as well as additional lists, in the Transfer Wallet API.

Status Code Overview

CodeResponse MessageDescriptionRelated API
0No errorRequest SuccessfulAll API
2The balance is not enoughInsufficient BalanceTransfer, Full Withdrawal
3The transaction already existTransaction already existsTransfer, Full Withdrawal
4The transaction doesn't existTransaction does not existQuery Transaction Details
5Game is not foundGame does not exist or has been delistedOpen Game, Query Bet Logs, Query Bet Detail, Query Bet Replay
6The username already existPlayer Account already existsCreate Player
7Internal server errorSystem internal errorAll API
8The User is not existPlayer does not existQuery Player Balance, Transfer, Full Withdrawal, Open Game, Query Bet Detail
10Agent code was not found or blockAgent does not exist or is blockedGet Access Token
11Parameters errorParameter errorAll API
14The BetId is not existQuery Bet Logs does not existQuery Bet Detail, Query Bet Replay
19Invalid accountInvalid Player AccountQuery Player Balance, Transfer, Full Withdrawal, Open Game
20Member wallet is temporarily lockedPlayer wallet temporarily lockedTransfer, Full Withdrawal
35The transaction is pendingTransaction in progressTransfer, Full Withdrawal, Query Transaction Details
37The Function is not supportedThis function is not supportedQuery Bet Detail, Query Bet Replay
38Query not allowed as the betId has expiredTransaction detail/replay has exceeded query timeQuery Bet Detail, Query Bet Replay
77Too many request, please try again laterRequest too frequentQuery Bet Logs, Query Daily Report, Query Player Report
78Operator card spinId was usedItem ID has been usedSend Operator Card, Send Simple FreeSpin Operator Card
81Branch config not foundBranch configuration not foundQuery Player Balance, Transfer, Full Withdrawal, Open Game, Query Bet Logs, Force Logout, Query Player Session
82Please check Site ID is for this playerSite ID does not match PlayerOpen Game
83Signature verification failedSignature verification failedAll APIs requiring verification
84Encryption failedEncryption failedAll APIs requiring encryption
85Key config setting errorEncryption setting read anomalyAll API
86Game is restrictedGame rejected due to restrictionsOpen Game, Send Operator Card, Send Simple FreeSpin Operator Card, Send Simple FeatureGame Operator Card
87Invalid item parameter valueOperator Card Parameter Combination ErrorSend Operator Card, Send Simple FreeSpin Operator Card, Send Simple FeatureGame Operator Card
88Only one item can be active at a time in the same gameItem cannot be triggered simultaneouslySend Operator Card, Send Simple FreeSpin Operator Card, Send Simple FeatureGame Operator Card
89The item has not been used yet, or the spinId does not existItem has not been used, cannot query resultSend Operator Card, Send Simple FreeSpin Operator Card, Send Simple FeatureGame Operator Card
100The server is busy, please try again laterService is busyOpen Game

Error Code Classification

Success Codes

CodeDescription
0Request Successful, no error

Player Management Errors

CodeDescriptionPossible CauseHandling Suggestion
6Player Account already existsUsing an already registered Player Account to Create PlayerUse another Player Account
8Player does not existQuerying or operating on a non-existent PlayerConfirm Player ID or Player Account is correct, call Create Player API first
19Invalid Player AccountPlayer Account format error or abnormal statusCheck Player Account format and status
20Player wallet temporarily lockedPlayer wallet temporarily locked for some reasonRetry later or Contact Customer Support Team
CodeDescriptionPossible CauseHandling Suggestion
2Insufficient BalanceInsufficient Balance when withdrawing or BettingCheck Player Balance, ensure sufficient funds
3Transaction already existsUsing a duplicate transaction ID (transId)Use a new unique transaction ID
4Transaction does not existQuerying a non-existent transaction recordConfirm transaction ID is correct
35Transaction in progressTransaction is being processed, not yet completedWait or query transaction status
37This function is not supportedThis query transaction does not support this API functionConfirm if the transaction is within the queryable range
38Transaction detail/replay has exceeded query timeTransaction occurred more than 30 days agoContact Customer Support Team
78Duplicate Item Transaction IDItem ID has been usedChange spinId parameter

Game Management Errors

CodeDescriptionPossible CauseHandling Suggestion
5Game does not existUsing an invalid Game Code or Game has been delistedConfirm Game Code is correct
82Site ID mismatchSite ID does not correspond to PlayerContact Customer Support Team, provide logUUID
86Game rejected due to restrictionsThis Game cannot be opened due to currency, line restrictions, etc.First confirm the Game List document has a Description, Contact Customer Support Team, provide logUUID
100Service is busy, cannot generate new Game linkService has reached its player capacity, more Players are rejected to ensure qualityRetry later

Query Bet Log Errors

CodeDescriptionPossible CauseHandling Suggestion
14Query Bet Logs does not existQuerying a non-existent Query Bet Logs or incorrect txTimeConfirm betId and txTime parameters are correct

System Level Errors

CodeDescriptionPossible CauseHandling Suggestion
7System internal errorInternal server errorContact Customer Support Team, provide logUUID
10Agent errorIncorrect agentId or secret, or Agent is blockedCheck Authentication information, contact administrator to confirm status
11Parameter errorRequest parameters missing, incorrectly formatted, or do not meet requirementsCheck all Required parameters and format
77Request too frequentToo many requests sent in a short periodReduce request frequency, retry later
81Branch configuration not foundSystem configuration missingContact Customer Support Team
83Signature verification failedIncorrect signature calculation or request headerCheck signature generation logic and request header
84Encryption failedIncorrect encryption key or encryption methodCheck encryption configuration and implementation
85Encryption setting read anomalySystem unable to read valid Key informationContact Customer Support Team
87Operator Card Parameter Combination ErrorPlease check the Operator Card sending rules for the corresponding APIReconfirm parameter rules or Contact Customer Support Team
88Item cannot be triggered simultaneouslyPlayer has another card active in the Game but has not finished using itAsk Player to re-enter the corresponding Game, use it, then send
89Item has not been used, cannot query resultSend Operator Card, Send Simple FreeSpin Operator Card, Send Simple FeatureGame Operator CardReconfirm if Item has been used or if Item has expired and does not exist

10 - Agent Error

Occurs in the /v2/auth API, possible causes:

  1. Agent ID does not exist: Used an unregistered Agent ID
  2. Incorrect secret: The secret parameter after decryption does not match the agentId
  3. Agent is blocked: The Agent ID has been disabled by the system

Handling Suggestion:

  • Confirm agentId and secret are correct
  • Contact Customer Support Team to check Agent status
  • Check if the x-agentid request header and the agentId in the body are consistent

83 - Signature Verification Failed

This is the most common Authentication error, which may be caused by the following:

  1. Incorrect signature string combination order

    • The correct order should be: agentId + secret + timestamp + nonce + cipherText
    • Use SHA256 (not HMAC-SHA256) for hashing
  2. Timestamp verification failed

    • The time difference between the Operator and the server exceeds the allowed range (usually ±1 minute)
    • Incorrect timestamp format (should be a 13-digit millisecond timestamp)
  3. Nonce verification failed

    • Used a duplicate nonce value (must be unique for each request)
  4. Missing or incorrect request headers

    • Missing required request headers: x-agentid, x-timestamp, x-nonce, x-signature
    • Request header values are inconsistent with the values used for actual signature calculation

Handling Suggestion:

  • Refer to Authentication Overview to check signature generation logic
  • Ensure server time synchronization (using NTP)
  • Generate a new nonce for each request
  • Confirm all request headers are set correctly

84 - Encryption Failed

Encryption/Decryption related errors:

  1. Incorrect encryption method: Must use AES-256-GCM
  2. Incorrect key: Encryption key configuration is incorrect
  3. Incorrect data format: Data format before encryption is incorrect

Handling Suggestion:

  • Check if the encryption implementation uses AES-256-GCM
  • Confirm encryption key is correct
  • Refer to the encryption example in Authentication Overview

Game Type Mapping Table

CodeDescription
1Slot Machine

Language

CodeDescription
enEnglish (default Language, if VP does not support the corresponding Language, then it's the default Language)
zh-HansSimplified Chinese
thThai
myBurmese
idIndonesian
viVietnamese
jpJapanese
ptPortuguese
koKorean
tlTagalog
hiHindi
msMalay
bnBengali
esSpanish

Currency

CodeDescription
AUDAustralian Dollar
BDTBangladeshi Taka
BRLBrazilian Real
CADCanadian Dollar
CNYChinese Yuan
EGPEgyptian Pound
EUREuro
GBPBritish Pound
HKDHong Kong Dollar
IDRIndonesian Rupiah (1:1000)
IDR1Indonesian Rupiah (1:1)
INRIndian Rupee
JPYJapanese Yen
KHRCambodian Riel
KRWKorean Won (1:1)
KRW1Korean Won (1:1000)
LAKLao Kip (1:1000)
LAK1Lao Kip (1:1)
LKRSri Lankan Rupee
MMKMyanmar Kyat (1:1000)
MMK1Myanmar Kyat (1:1)
MXNMexican Peso
MYRMalaysian Ringgit
MYR1Malaysian Ringgit (displayed as 100:1 in Games)
NPRNepalese Rupee
NZDNew Zealand Dollar
PHPPhilippine Peso
PKRPakistani Rupee
THBThai Baht
THB1Thai Baht (displayed as 100:1 in Games)
USDUS Dollar
USDTTether
VNDVietnamese Dong (1:1000)
VND1Vietnamese Dong (1:1)
ZARSouth African Rand

Transaction Source Code

CodeDescription
1Normal Bet
2Task System
3Prize
4System Reward
5Treasure Chest
6Cash Ticket
7Multi Quest
8Card
9Operator Card