public interface WithdrawalAPI
| 限定符和类型 | 方法和说明 |
|---|---|
WithdrawApplyResponse |
applyWithdraw(WithdrawApplyRequest request)
apply withdraw
|
void |
cancelWithdraw(String withdrawalId)
Only withdrawals in processing status could be cancelled.
|
Pagination<WithdrawResponse> |
getHistWithdrawPageList(String currency,
String status,
long startAt,
long endAt,
int currentPage,
int pageSize)
List of KuCoin V1 historical withdrawals.
|
Pagination<WithdrawResponse> |
getWithdrawList(String currency,
String status,
long startAt,
long endAt,
int currentPage,
int pageSize)
check withdrawals list
|
WithdrawQuotaResponse |
getWithdrawQuotas(String currency,
String chain)
get withdrawal quotas
|
WithdrawQuotaResponse getWithdrawQuotas(String currency, String chain) throws IOException
currency - currency. e.g. BTCIOExceptionWithdrawApplyResponse applyWithdraw(WithdrawApplyRequest request) throws IOException
request - IOExceptionvoid cancelWithdraw(String withdrawalId) throws IOException
withdrawalId - unique identity for withdrawal orderIOExceptionPagination<WithdrawResponse> getWithdrawList(String currency, String status, long startAt, long endAt, int currentPage, int pageSize) throws IOException
currency - Currency codestatus - Status. Available value: PROCESSING, WALLET_PROCESSING, SUCCESS, and FAILUREstartAt - Start time. unix timestamp calculated in milliseconds, the creation time queried shall posterior to the start time.endAt - End time. unix timestamp calculated in milliseconds, the creation time queried shall prior to the end time.currentPage - pageSize - IOExceptionPagination<WithdrawResponse> getHistWithdrawPageList(String currency, String status, long startAt, long endAt, int currentPage, int pageSize) throws IOException
currency - [Optional] Currency codestatus - [Optional] Status. Available value: PROCESSING, WALLET_PROCESSING, SUCCESS, and FAILUREstartAt - [Optional] Start time. unix timestamp calculated in milliseconds, the creation time queried shall posterior to the start time.endAt - [Optional] End time. unix timestamp calculated in milliseconds, the creation time queried shall prior to the end time.currentPage - [Optional]pageSize - [Optional]IOExceptionCopyright © 2023. All rights reserved.