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:
CoingiExceptionIOException
-
cancelOrder
@POST @Path("cancel-order") CoingiOrder cancelOrder(CoingiCancelOrderRequest request) throws CoingiException, IOException - Returns:
- true if order has been canceled.
- Throws:
CoingiExceptionIOException
-
getOrderStatus
@POST @Path("get-order") CoingiOrder getOrderStatus(CoingiGetOrderRequest request) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-
getOrderHistory
@POST @Path("orders") CoingiOrdersList getOrderHistory(CoingiGetOrderHistoryRequest request) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-
getUserBalance
@POST @Path("balance") CoingiBalances getUserBalance(CoingiBalanceRequest balanceRequest) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-
getTransactionHistory
@POST @Path("transactions") CoingiUserTransactionList getTransactionHistory(CoingiTransactionHistoryRequest request) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-
createWithdrawal
@POST @Path("create-crypto-withdrawal") CoingiWithdrawalResponse createWithdrawal(CoingiWithdrawalRequest request) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-
depositWallet
@POST @Path("deposit-wallet") CoingiDepositWalletResponse depositWallet(CoingiDepositWalletRequest request) throws CoingiException, IOException - Throws:
CoingiExceptionIOException
-