View Source BitpandaApi.Api.FiatWallet.Transactions (Bitpanda API v0.1.0)

Api call to collect crypto wallets transactions

Link to this section Summary

Functions

Collect transactions for user

Collect transactions for user. Raises exception on error

Link to this section Types

@type transaction_data() :: %{
  attributes: %{
    amount: String.t(),
    time: %{date_iso8601: String.t()},
    fiat_id: String.t(),
    fee: String.t(),
    in_or_out: String.t(),
    type: String.t(),
    status: String.t(),
    fiat_wallet_id: String.t(),
    to_eur_rate: String.t(),
    user_id: String.t()
  },
  id: String.t(),
  type: String.t()
}

Link to this section Functions

Link to this function

get(apikey, type \\ nil, status \\ nil)

View Source

Collect transactions for user

Link to this function

get!(apikey, type \\ nil, status \\ nil)

View Source
@spec get!(
  String.t(),
  BitpandaApi.Entity.FiatWallet.Transaction.type() | nil,
  BitpandaApi.Entity.FiatWallet.Transaction.status() | nil
) :: [BitpandaApi.Entity.FiatWallet.Transaction.t()]

Collect transactions for user. Raises exception on error