โฌ‡๏ธCheck Transfer

The "Check Transfer" function is designed to allow clients to inquire about the details of Debit/Credit transactions. By utilizing this function, customers can retrieve specific transaction information that they have previously requested, ensuring clarity and transparency in their financial interactions.

circle-info

Endpoint: /api/v1/transfer/check-transfer Request Type: POST Content-Type: application/json

Request Example

{
  "operatorToken": "<operatorToken>",
  "secretKey": "<seamlessKey>",
  "txnId": "eb54307d-7033-4a82-aa20-3cb42a7ea79a"
}
Key
Description
Validation rules

operatorToken

Agent token identifier

Required, UUID v4

secretKey

Agent password key identifier

Required, UUID v4

txnId

Transaction identifier, Generated by Agent system

Required, UUID v4

Response example

{
  "code": 0,
  "msg": "Successful",
  "requestUid": "UUID v4",
  "responseTime": "YYYY-MM-DD HH:mm:ss",
  "data": {
    "playerUsername": "<playerUsername>",
    "requestIp": "<requestIp>",
    "txnId": "eb54307d-7033-4a82-aa20-3cb42a7ea79a",
    "txnType": "<txnType>",
    "agentSystemTxnId": "eb54307d-7033-4a82-aa20-3cb42a7ea79a",
    "balance": 1000,
    "balanceAfter": 1000,
    "balanceBefore": 0,
    "creditAvailable": 0,
    "currencyCode": "THB",
    "lastBalanceUpdated": "YYYY-MM-DD HH:mm:ss",
    "createdDate": "YYYY-MM-DD HH:mm:ss",
    "updatedDate": "YYYY-MM-DD HH:mm:ss"
  }
}