GET: Withdrawal by ID
GET /withdrawals/requests/:id
GET /withdrawals/requests/:idconst getWithdrawalRequests = () => {
const timestamp = Math.round(Date.now() / 1000)
const payload = timestamp + 'GET' + '/withdrawals/requests/78' + '{}'
const decodedSecret = Buffer.from(apiSecret, 'base64')
const hmac = crypto.createHmac('sha256', decodedSecret)
const signedPayload = hmac.update(payload).digest('base64')
// SET HEADERS
const headers = {
'X-NDAX-API-KEY': 'public_key',
'X-NDAX-SIGNED': signedPayload,
'X-NDAX-TIMESTAMP': timestamp,
'X-NDAX-PASSPHRASE': 'passphrase'
}
const options = {
headers,
body,
json: true
}
return request.get(
'https://api.ndax.in/withdrawals/requests/78',
options
)
}Returns a specific withdrawal request associated with your participant or platform.
See GET /withdrawals/requests for response field descriptions.
Sample Response
Last updated