Interface IndependentReserveAuthenticated
@Path("Private")
@Produces("application/json")
public interface IndependentReserveAuthenticated
Author: Kamil Zbikowski Date: 4/10/15
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptioncancelOrder
(IndependentReserveCancelOrderRequest independentReserveCancelOrderRequest) getBalance
(AuthAggregate authAggregate) getBrokerageFees
(IndependentReserveBrokerageFeeRequest independentReserveBrokerageFeeRequest) getDigitalCurrencyDepositAddress
(IndependentReserveDepositAddressRequest independentReserveDepositAddressRequest) getOpenOrders
(IndependentReserveOpenOrderRequest independentReserveOpenOrderRequest) getTradeHistory
(IndependentReserveTradeHistoryRequest independentReserveTradeHistoryRequest) getTransactions
(IndependentReserveTransactionsRequest independentReserveTransactionsRequest) orderDetails
(IndependentReserveOrderDetailsRequest independentReserveOrderDetailsRequest) placeLimitOrder
(IndependentReservePlaceLimitOrderRequest independentReservePlaceLimitOrderRequest) placeMarketOrder
(IndependentReservePlaceMarketOrderRequest independentReservePlaceMarketOrderRequest) synchDigitalCurrencyDepositAddressWithBlockchain
(IndependentReserveSynchDigitalCurrencyDepositAddressWithBlockchainRequest independentReserveSynchDigitalCurrencyDepositAddressWithBlockchainRequest) Forces the deposit address to be checked for new Bitcoin or Ether deposits.
-
Field Details
-
SynchDigitalCurrencyDepositAddressWithBlockchain
- See Also:
-
WithdrawDigitalCurrency
- See Also:
-
GetDigitalCurrencyDepositAddress
- See Also:
-
GetBrokerageFees
- See Also:
-
-
Method Details
-
getBalance
@POST @Path("GetAccounts") @Consumes("application/json") IndependentReserveBalance getBalance(AuthAggregate authAggregate) throws IndependentReserveHttpStatusException, IOException -
getOpenOrders
@POST @Path("GetOpenOrders") @Consumes("application/json") IndependentReserveOpenOrdersResponse getOpenOrders(IndependentReserveOpenOrderRequest independentReserveOpenOrderRequest) throws IndependentReserveHttpStatusException, IOException -
getTradeHistory
@POST @Path("GetTrades") @Consumes("application/json") IndependentReserveTradeHistoryResponse getTradeHistory(IndependentReserveTradeHistoryRequest independentReserveTradeHistoryRequest) throws IndependentReserveHttpStatusException, IOException -
getDigitalCurrencyDepositAddress
@POST @Path("GetDigitalCurrencyDepositAddress") @Consumes("application/json") IndependentReserveDepositAddressResponse getDigitalCurrencyDepositAddress(IndependentReserveDepositAddressRequest independentReserveDepositAddressRequest) throws IndependentReserveHttpStatusException, IOException -
placeLimitOrder
@POST @Path("PlaceLimitOrder") @Consumes("application/json") IndependentReservePlaceLimitOrderResponse placeLimitOrder(IndependentReservePlaceLimitOrderRequest independentReservePlaceLimitOrderRequest) throws IndependentReserveHttpStatusException, IOException -
placeMarketOrder
@POST @Path("PlaceMarketOrder") @Consumes("application/json") IndependentReservePlaceMarketOrderResponse placeMarketOrder(IndependentReservePlaceMarketOrderRequest independentReservePlaceMarketOrderRequest) throws IndependentReserveHttpStatusException, IOException -
cancelOrder
@POST @Path("CancelOrder") @Consumes("application/json") IndependentReserveCancelOrderResponse cancelOrder(IndependentReserveCancelOrderRequest independentReserveCancelOrderRequest) throws IndependentReserveHttpStatusException, IOException -
orderDetails
@POST @Path("GetOrderDetails") @Consumes("application/json") IndependentReserveOrderDetailsResponse orderDetails(IndependentReserveOrderDetailsRequest independentReserveOrderDetailsRequest) throws IndependentReserveHttpStatusException, IOException -
getTransactions
@POST @Path("GetTransactions") @Consumes("application/json") IndependentReserveTransactionsResponse getTransactions(IndependentReserveTransactionsRequest independentReserveTransactionsRequest) throws IndependentReserveHttpStatusException, IOException -
synchDigitalCurrencyDepositAddressWithBlockchain
@POST @Path("SynchDigitalCurrencyDepositAddressWithBlockchain") @Consumes("application/json") IndependentReserveSynchDigitalCurrencyDepositAddressWithBlockchainResponse synchDigitalCurrencyDepositAddressWithBlockchain(IndependentReserveSynchDigitalCurrencyDepositAddressWithBlockchainRequest independentReserveSynchDigitalCurrencyDepositAddressWithBlockchainRequest) throws IndependentReserveHttpStatusException, IOException Forces the deposit address to be checked for new Bitcoin or Ether deposits. -
withdrawDigitalCurrency
@POST @Path("WithdrawDigitalCurrency") @Consumes("application/json") Object withdrawDigitalCurrency(IndependentReserveWithdrawDigitalCurrencyRequest req) throws IndependentReserveHttpStatusException, IOException -
getBrokerageFees
@POST @Path("GetBrokerageFees") @Consumes("application/json") IndependentReserveBrokerageFeeResponse getBrokerageFees(IndependentReserveBrokerageFeeRequest independentReserveBrokerageFeeRequest) throws IndependentReserveHttpStatusException, IOException
-