Bank listing

Currently, the ACH Bank transfer facility is available to US shoppers only. A US shopper interested in making a bank transfer will be required to link his bank account through Plaid. Rocketfuel uses Dwolla for all the bank transfers.

The process of linking a bank account is described here.

If a shopper has already linked a bank account(s), this API returns the list of the connected bank account.

The below screenshot displays a way of showing a list of connected bank account(s).

GET /banks/my

Headers

NameTypeDescription

Authorization*

String

"Bearer" + Shopper access token

Content-Type

String

application/jsom

{
  "ok": true,
  "result": {
    "banks": [
      {
        "name": "dwolla",
        "value": "dwolla",
        "stockId": "4cb09b90-9765-47a2-8a28-f91c7c0694d8",
        "limit": "0",
        "accounts": [
          {
            "accountName": "Plaid Saving",
            "bankName": "Chase",
            "mask": "1111",
            "id": "BQzE1gXJvgSozwvyo3qnfDgZeGnnZMiwXwV9k",
            "customerUrl": "https://api-sandbox.dwolla.com/customers/0f7bef60-fc98-421b-85fd-6d340955bdf7",
            "customerId": "0f7bef60-fc98-421b-85fd-6d340955bdf7",
            "fundingSource": "https://api-sandbox.dwolla.com/funding-sources/be768c4c-7c41-4676-8499-6489088c3283",
            "isPrimary": null,
            "currency": "USD",
            "isBalanceInfo": false,
            "balanceInfo": null,
            "status": 2
          }
        ],
        "default": false,
        "priority": 1,
        "connected": true
      }
    ],
    "defaultCurrency": "USD"
  }
}

Last updated