Docs
Get API Keys
  • Authorization
    Root
    Accounts
    External Parties
    Funding Sources
    Transfers
    Webhook Subscriptions
    Webhooks

C# #

Dwolla.Client is available on Nuget with source code available on our GitHub page. More information is available on the project's README.

Installation #

bash
Install-Package Dwolla.Client

Quickstart #

Let's list some Customer objects:

bash
var client = DwollaClient.Create(isSandbox: true);

var tokenRes = await client.PostAuthAsync<AppTokenRequest, TokenResponse>(
    new Uri($"{client.AuthBaseAddress}/token"),
    new AppTokenRequest {Key = "...", Secret = "..."});

var headers = new Headers {{"Authorization", $"Bearer {tokenRes.Content.Token}"}};
var rootRes = (await client.GetAsync<RootResponse>(new Uri(client.ApiBaseAddress), headers)).Content;

var customers = await client.GetAsync<GetCustomersResponse>(rootRes.Links["customers"].Href, headers);
Test in the Sandbox for free today.
Use sandbox environment to test API requests.
Get API Keys
2023 All Rights Reserved
Financial institutions play an important role in our network.

All funds transfers made using the Dwolla Platform are performed by a financial institution partner, and any funds held in a Dwolla Balance are held by a financial institution partner. Learn more about our financial institution partners.