Check Withdraw Status
Dive into the specifics of each API endpoint by checking out our complete documentation.
Retrive Withdraw by ID
POST /withdraw/{withdrawId}
Get a withdraw request detail by id
Authorizations
AuthorizationstringRequired
Path parameters
withdrawIdstringRequired
ID of withdraw that needs to be fetched
Body
merchant_idstringRequired
Responses
200
successful operation
400
Invalid ID supplied
404
Withdraw not found
post
/withdraw/{withdrawId}POST /api/merchant/withdraw/{withdrawId} HTTP/1.1
Host: kriptopay.com
Authorization: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 18
"merchant_id=''"{
"withdraw_id": 1,
"transaction_id": "text",
"fiat_currency": "USD",
"fiat_amount": 100,
"address": "text",
"tag": "text",
"description": "text",
"coin": "BTC",
"network": "BSC",
"amount": 1,
"status": "COMPLETE"
}Last updated