@Path(value="v2")
@Consumes(value="application/x-www-form-urlencoded")
@Produces(value="application/json")
public interface BitsoAuthenticated
| Modifier and Type | Method and Description |
|---|---|
BitsoOrder |
buy(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
BigDecimal amount,
BigDecimal price) |
boolean |
cancelOrder(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
String orderId) |
BitsoBalance |
getBalance(String apiKey,
BitsoDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
BitsoDepositAddress |
getBitcoinDepositAddress(String apiKey,
BitsoDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
BitsoOrder[] |
getOpenOrders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
BitsoUserTransaction[] |
getUserTransactions(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
long numberOfTransactions) |
BitsoUserTransaction[] |
getUserTransactions(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
long numberOfTransactions,
long offset,
String sort) |
BitsoOrder |
sell(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
BigDecimal amount,
BigDecimal price) |
String |
withdrawBitcoin(String apiKey,
BitsoDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
BigDecimal amount,
String address) |
String |
withdrawToRipple(String apiKey,
BitsoDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
BigDecimal amount,
String currency,
String rippleAddress) |
@POST @Path(value="open_orders/") BitsoOrder[] getOpenOrders(@FormParam(value="key") String apiKey, @FormParam(value="signature") si.mazi.rescu.ParamsDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="buy/") BitsoOrder buy(@FormParam(value="key") String apiKey, @FormParam(value="signature") si.mazi.rescu.ParamsDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="amount") BigDecimal amount, @FormParam(value="price") BigDecimal price) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="sell/") BitsoOrder sell(@FormParam(value="key") String apiKey, @FormParam(value="signature") si.mazi.rescu.ParamsDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="amount") BigDecimal amount, @FormParam(value="price") BigDecimal price) throws BitsoException, IOException
BitsoExceptionIOException@POST
@Path(value="cancel_order/")
boolean cancelOrder(@FormParam(value="key")
String apiKey,
@FormParam(value="signature")
si.mazi.rescu.ParamsDigest signer,
@FormParam(value="nonce")
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
@FormParam(value="id")
String orderId)
throws BitsoException,
IOException
BitsoExceptionIOException@POST @Path(value="user_transactions/") BitsoUserTransaction[] getUserTransactions(@FormParam(value="key") String apiKey, @FormParam(value="signature") si.mazi.rescu.ParamsDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="limit") long numberOfTransactions) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="user_transactions/") BitsoUserTransaction[] getUserTransactions(@FormParam(value="key") String apiKey, @FormParam(value="signature") si.mazi.rescu.ParamsDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="limit") long numberOfTransactions, @FormParam(value="offset") long offset, @FormParam(value="sort") String sort) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="balance/") BitsoBalance getBalance(@FormParam(value="key") String apiKey, @FormParam(value="signature") BitsoDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="bitcoin_deposit_address/") BitsoDepositAddress getBitcoinDepositAddress(@FormParam(value="key") String apiKey, @FormParam(value="signature") BitsoDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="bitcoin_withdrawal/") String withdrawBitcoin(@FormParam(value="key") String apiKey, @FormParam(value="signature") BitsoDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="amount") BigDecimal amount, @FormParam(value="address") String address) throws BitsoException, IOException
BitsoExceptionIOException@POST @Path(value="ripple_withdrawal/") String withdrawToRipple(@FormParam(value="key") String apiKey, @FormParam(value="signature") BitsoDigest signer, @FormParam(value="nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @FormParam(value="amount") BigDecimal amount, @FormParam(value="currency") String currency, @FormParam(value="address") String rippleAddress) throws BitsoException, IOException
BitsoExceptionIOExceptionCopyright © 2012–2017 Knowm Inc.. All rights reserved.