How to find my Dwolla master account id

I am trying to transfer money from a customer account to the master account.
Where can I see my master account ID in the Dwolla dashboard?

Hi @santosh.nadgir,

The Master Account’s ID isn’t available in the Dashboard. However, you can retrieve the Admin ID by calling the root endpoint.

Here’s an exmaple from our docs -

GET https://api-sandbox.dwolla.com/
Accept: application/vnd.dwolla.v1.hal+json
Authorization: Bearer {{access_token}}

...

{
  "_links": {
    "account": {
      "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
    },
    "customers": {
      "href": "https://api-sandbox.dwolla.com/customers"
    }
  }
}

This topic was automatically closed after 365 days. New replies are no longer allowed.