โฌ‡๏ธCredit

The "Credit" function enables clients to increase the balance for a specified player. To carry out this action, clients are required to send an HTTP POST request with a JSON-formatted body to the provided API endpoint.

circle-info

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

HTTP Authorization

Key
Description

X-Authorization-Token

Token generate by AES-256 (Example: Here)

Request Example

{
  "operatorToken": "<operatorToken>",
  "secretKey": "<seamlessKey>",
  "playerUsername": "<playerUsername>",
  "amount": 1000,
  "txnId": "eb54307d-7033-4a82-aa20-3cb42a7ea79a",
  "currencyCode": "THB"
}
Key
Description
Data Type

operatorToken

Agent token identifier

Required, UUID v4

secretKey

Agent password key identifier

Required, UUID v4

playerUsername

Customer system player username identifier

Required, Alphanumeric, characters (A-Z, a-z, 0-9) with a maximum length of 1-16 characters.

amount

Amount for deduct player balance

Number format with 2 decimal places

txnId

Transaction identifier, Generated by customer system

Required, UUID v4

currencyCode

Player currency code

Required, with Currency format ISO 4217

Response example