Up API

A convenient and easy to use wrapper for the Up Bank API.

Example

The following example shows the calculation of the sum of all transactions after a given date (up to the page limit).

``` use upapi::v1::Client; use upapi::v1::transactions::ListTransactionsOptions;

[tokio::main]

async fn main() { let token = std::env::var("UPACCESSTOKEN").unwrap();

let client = Client::new(token.to_string());

let mut options = ListTransactionsOptions::default();
options.filter_since("2020-01-01T01:02:03Z".to_string());
options.page_size(100);

let transactions = client.list_transactions(&options).await.unwrap();

let total : f32 =
    transactions
    .data
    .into_iter()
    .map(|t| t.attributes.amount.value)
    .map(|v| v.parse::<f32>().unwrap())
    .filter(|a| a > &0.0)
    .sum();

println!("{}", total);

} ```

Planned Features

Currently this API wrapper supports all of the v1 Up API endpoints except webhooks. This is planned for a (hopefull soon) future release.