Get callback notifications (webhooks) whenever there are any deposits or withdrawals to or from your addresses that you would like to be notified about. Get information on balances, fees, and any other data on demand without having to manage or fetch vast blockchain databases and nodes.
POST https://{merchant_callback_URL}/
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
referCode | string | (*Required) Reference code by merchant unique code. * Unique. Example: RF-5242214199 |
docNo | string | (*Required) Document No Generate by gateway system. * Unique. Example: WD8888888888 |
fromAcc | string | (*Required) Withdrawal from the Account of Crypto Address. Example: TXf5jhWZGYDYmsSU3AQkQ8tYiUoY4DxVsV |
toAcc | string | (*Required) Withdrawal to the Account of Crypto Address. Example: TXf5jhWZGYDYmsSU3AQkQ8tYiUoY4DxVsV |
receiptCode | string | (*Required) Transaction Hash & Transaction Receipt. Example: e793cff685397ff849d45e8b1eeab13b2f2e2d8b634162d86729ec6a9a6d14713 |
coinCode | string | (*Required) Coin Code. Eg. ETH / TRX. Example: TRX |
currencyCode | string | (*Required) This currency symbols codes of the currencies supported to specify the currency of monetary. Eg. USDT / USDC. Example: USDT |
amount | float | (*Required) The amount in currency to be transferred. * Maximun supported 4 decimals. Example: -87.8700 |
transType | string | (*Required) Transaction Type. Eg: DEPOSIT / WITHDRAW. Example: WITHDRAW |
transStatus | string | (*Required) Transaction Status. Eg: PENDING / PROCESS / FAILURE / CONFIRM. Example: PENDING |
fee | float | (*Required) Charge the fee for each transaction amount. * Maximun supported 4 decimals. Example: -1.6162 |
createBy | string | (*Required) Transaction Owner name / User name. Example: transaction_user_owner |
createAt | string | (*Required) Transaction Date & Time. * Datetime format : yyyy-MM-dd HH:mm:ss Example: 2022-01-04 13:29:46 |
xSignature | string | (*Required) Verification of Key from Callback Result. Implemented by using signing and verification of the input. Example: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |
pymtReason | string | (*Required) Payment Reason. Example: SUCCESS |
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
rSign | string | (*Required) Sign the source string. Example: MD5( xSignature + docNo + referCode + secret-Key ) |
When submitting the "amount" please ensure that it includes exactly four decimal places.
- For example to meet the formatting criteria:
incorrect | should be entered |
---|---|
-88 | -88.0000 |
-188.1 | -188.0100 |
-1 | -1.0000 |
When submitting the "fee" please ensure that it includes exactly four decimal places.
- For example to meet the formatting criteria:
incorrect | should be entered |
---|---|
-88 | -88.0000 |
-188.1 | -188.0100 |
-1 | -1.0000 |