Accounts

The Accounts resource in the Dwolla API represents your organization’s main account, which is created when you sign up on dwolla.com. This account serves as the central hub for managing your business’s funds and is primarily used for pay-in and pay-out use cases. Through the Accounts resource, you can retrieve account details, link or remove funding sources (such as bank accounts), and track all transfers associated with your organization. Use these endpoints to programmatically manage your account profile and monitor payment activity at the business level.

LinkDescription
selfURL of the Account resource
receiveFollow the link to create a transfer to this Account.
funding-sourcesGET this link to list the Account’s funding sources.
transfersGET this link to list the Account’s transfers.
customers(optional) If this link exists, this account is authorized to create and manage Dwolla API Customers.
sendFollow the link to create a transfer to this Account.
{
  "_links": {
    "self": {
      "href": "https://api-sandbox.dwolla.com/accounts/ca32853c-48fa-40be-ae75-77b37504581b"
    },
    "receive": {
      "href": "https://api-sandbox.dwolla.com/transfers"
    },
    "funding-sources": {
      "href": "https://api-sandbox.dwolla.com/accounts/ca32853c-48fa-40be-ae75-77b37504581b/funding-sources"
    },
    "transfers": {
      "href": "https://api-sandbox.dwolla.com/accounts/ca32853c-48fa-40be-ae75-77b37504581b/transfers"
    },
    "customers": {
      "href": "https://api-sandbox.dwolla.com/customers"
    },
    "send": {
      "href": "https://api-sandbox.dwolla.com/transfers"
    }
  },
  "id": "ca32853c-48fa-40be-ae75-77b37504581b",
  "name": "Jane Doe"
}