Transfers
Get counterparty withdrawal limit
REST API
- Introduction
- Authentication
- Assets
- Fee Rates
- Index
- Instruments
- Orders
- Portfolios
- Position Offsets
- Rankings
- Transfers
FIX API
WEBSOCKET FEED
Transfers
Get counterparty withdrawal limit
Copy
Ask AI
const transfersService = new TransfersService(client);
transfersService.getCounterpartyWithdrawalLimit({
counterpartyId: 'your-counterparty-id',
asset: 'ETH',
}).then(async (response) => {
console.log('Withdrawal Limit: ', response);
})
For more information, please visit the INTX TS SDK.
Copy
Ask AI
const transfersService = new TransfersService(client);
transfersService.getCounterpartyWithdrawalLimit({
counterpartyId: 'your-counterparty-id',
asset: 'ETH',
}).then(async (response) => {
console.log('Withdrawal Limit: ', response);
})
For more information, please visit the INTX TS SDK.
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.