Bittrex v3.0.0 Bittrex.Account View Source

Implements /account endpoints.

Link to this section Summary

Types

t()
  • id: the account ID associated with this API key / user.
  • email: the email address associated with this API key / user.
  • is_international: true if this account has access to international markets, false otherwise

Functions

Retrieve account information

Link to this section Types

Link to this type

t() View Source
t() :: %Bittrex.Account{
  email: String.t(),
  id: String.t(),
  is_international: boolean()
}

  • id: the account ID associated with this API key / user.
  • email: the email address associated with this API key / user.
  • is_international: true if this account has access to international markets, false otherwise.

Link to this section Functions

Link to this function

get_account(client) View Source
get_account(%Bittrex.Client{
  api_key: term(),
  api_secret: term(),
  sub_account_id: term()
}) ::
  StrawHat.Response.t(
    %Bittrex.Account{email: term(), id: term(), is_international: term()},
    Bittrex.Client.error()
  )

Retrieve account information.