Withdrawals

The repost on withdrawal status is implemented via webhooks.

Method: POST

Content-type: application/json

Webhook

{"log":{"version":"1.2","creator":{"name":"Webhook.site","version":"1.0"},"entries":[{"startedDateTime":"2024-12-09 12:23:45","request":{"method":"POST","url":"https://webhook.site/d39c9598-7d83-4a0c-be5c-e87f0b478090","headers":[{"name":"user-agent","value":"Apache-HttpClient/5.2.3 (Java/21.0.2)"},{"name":"host","value":"webhook.site"},{"name":"transfer-encoding","value":"chunked"},{"name":"accept-encoding","value":"gzip, x-gzip, deflate"},{"name":"content-type","value":"application/json"},{"name":"accept","value":"text/plain, application/json, application/*+json, */*"},{"name":"traceparent","value":"00-6756e15133692c4edf25334ddc42b7f5-df25334ddc42b7f5-00"},{"name":"content-length","value":"187"}],"bodySize":187,"postData":{"mimeType":"application/json","text":"{\"uuid\":\"07a840ed-eb03-4ba0-b804-6f76e8bd8b62\",\"status\":\"DONE\",\"amount\":10,\"blockchain\":\"Tron\",\"currency\":\"USDT\",\"txId\":\"0934b8bef87e83882fc45172043b3a4d3269036525a89a4f73a40869c66efc7b\"}"}},"response":{"status":200,"httpVersion":"HTTP/1.1","headers":[{"name":"Content-Type","value":"text/html"}],"content":{"size":145,"text":"This URL has no default content configured. <a href=\"https://webhook.site/#!/view/d39c9598-7d83-4a0c-be5c-e87f0b478090\">View in Webhook.site</a>.","mimeType":"text/html"}}}]}}

Callback Parameters

Parameter

Mandatory

Format

Description

uuid

+

string

Transaction ID

status

+

string

Withdrawal status

amount

+

float

Withdrawal amount

blockchain

+

string

Network

currency

+

string

Coin

txId

+

string

Transaction Hash

Witdrawal callback example

{
  "uuid": "07a840ed-eb03-4ba0-b804-6f76e8bd8b62",
  "status": "DONE",
  "amount": 10,
  "blockchain": "Tron",
  "currency": "USDT",
  "txId": "0934b8bef87e83882fc45172043b3a4d3269036525a89a4f73a40869c66efc7b",
  "externalId":"4474787"
}

Last updated