Skip to main content
GET
/
v1
/
businesses
/
{businessId}
/
funding-details
Get funding details
curl --request GET \
  --url https://api.cadanapay.com/v1/businesses/{businessId}/funding-details \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "ach",
      "currency": "USD",
      "accountName": "Acme Corp",
      "accountNumber": "123456789",
      "routingNumber": "000000000",
      "bankName": "Example Bank",
      "accountType": "checking"
    },
    {
      "type": "iban",
      "currency": "EUR",
      "accountName": "Acme Corp",
      "accountNumber": "DE00000000000000000000",
      "swiftCode": "EXMPDEFF",
      "bankName": "Example Bank",
      "country": "DE"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Path Parameters

businessId
string
required

The unique identifier for the business

Response

Funding details for the account

data
object[]