GET: Transfer by ID
GET /transfers/:id
GET /transfers/:idconst getTransfers = () => {
const timestamp = Math.round(Date.now() / 1000)
const payload = timestamp + 'GET' + '/transfers/39' + '{}'
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/transfers/39', options)
}Sample Response
Returns single transfer made to or from your participant, or to or from your platform's account group.
See GET /transfers for response field descriptions.
Last updated