12 releases (5 major breaking)
5.0.0 | Jan 25, 2023 |
---|---|
4.0.0 | Sep 25, 2022 |
3.0.3 | Aug 26, 2022 |
2.0.1 | Aug 4, 2022 |
0.1.0 | Jun 10, 2016 |
#611 in Web programming
381 downloads per month
1MB
21K
SLoC
Plaid client, generated from the OpenAPI spec.
Usage
use plaid::PlaidClient;
use plaid::model::*;
#[tokio::main]
async fn main() {
let client = PlaidClient::from_env();
let response = client
.item_application_list()
.access_token("your access token")
.send()
.await
.unwrap();
println!("{:#?}", response);
}
This example loads configuration from environment variables, specifically:
-
PLAID_ENV
-
PLAID_CLIENT_ID
-
PLAID_SECRET
-
PLAID_VERSION
Installation
Add this to your Cargo.toml:
[dependencies]
plaid = "5"
Documentation
You can see working examples of every API call in the examples/
directory.
Contributing
Contributions are welcome!
Library created with Libninja.
Dependencies
~7–16MB
~362K SLoC