Package org.knowm.xchange.coingi
Interface CoingiAuthenticated
@Path("user")
@Consumes("application/json")
@Produces("application/json")
public interface CoingiAuthenticated
-
Method Summary
Modifier and TypeMethodDescriptioncancelOrder
(CoingiCancelOrderRequest request) createWithdrawal
(CoingiWithdrawalRequest request) depositWallet
(CoingiDepositWalletRequest request) getOrderStatus
(CoingiGetOrderRequest request) getUserBalance
(CoingiBalanceRequest balanceRequest)
-
Method Details
-
placeLimitOrder
@POST @Path("add-order") CoingiPlaceOrderResponse placeLimitOrder(CoingiPlaceLimitOrderRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
cancelOrder
@POST @Path("cancel-order") CoingiOrder cancelOrder(CoingiCancelOrderRequest request) throws CoingiException, IOException - Returns:
- true if order has been canceled.
- Throws:
CoingiException
IOException
-
getOrderStatus
@POST @Path("get-order") CoingiOrder getOrderStatus(CoingiGetOrderRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
getOrderHistory
@POST @Path("orders") CoingiOrdersList getOrderHistory(CoingiGetOrderHistoryRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
getUserBalance
@POST @Path("balance") CoingiBalances getUserBalance(CoingiBalanceRequest balanceRequest) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
getTransactionHistory
@POST @Path("transactions") CoingiUserTransactionList getTransactionHistory(CoingiTransactionHistoryRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
createWithdrawal
@POST @Path("create-crypto-withdrawal") CoingiWithdrawalResponse createWithdrawal(CoingiWithdrawalRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-
depositWallet
@POST @Path("deposit-wallet") CoingiDepositWalletResponse depositWallet(CoingiDepositWalletRequest request) throws CoingiException, IOException - Throws:
CoingiException
IOException
-