Funding Manager

Get details about given source account.

Get details about given source account.

get/v3/sourceAccounts/{sourceAccountId}

Path parameters

sourceAccountIdstring uuid required

Source account id

Response

Source account response

idstring uuid required

Source Account Id

balanceinteger

Decimal implied

currency'USD' | 'EUR' | 'GBP' | 'CAD' | 'HKD'
fundingRefstring

The funding reference (will not be set for DECOUPLED accounts).

physicalAccountNamestring

The physical account name (will not be set for DECOUPLED accounts).

railsIdstring required
payorIdstring uuid
namestring
pooledboolean

The pooled account flag (will not be set for DECOUPLED accounts).

customerIdstring nullable
physicalAccountIdstring uuid

The physical account id (will not be set for DECOUPLED accounts).

typestring required
countrystring

The two character ISO country code for the associated account

deletedboolean

An optional flag for whether the source account has been deleted. Only present in the response if true.

userDeletedboolean

An optional flag for whether the source account has been deleted by a user. Only present in the response if true.

deletedAtstring date-time

An optional timestamp when the source account has been deleted. Only present in the response if deleted.

Example response

{
  "physicalAccountName": "VELO_FBO_MYBANKA_USD",
  "country": "US",
  "userDeleted": true,
  "type": "FBO",
  "deletedAt": "2021-01-27T10:08:25.701Z",
  "fundingRef": "a1b2c3d4",
  "deleted": true,
  "balance": 1203489,
  "pooled": true,
  "name": "MyAccountName",
  "customerId": "Joe Customer",
  "physicalAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "autoTopUpConfig": {
    "targetBalance": 300000,
    "fundingAccountId": "640ab1bd-8a6a-4603-a83a-1edbc3ed5689",
    "minBalance": 10000,
    "enabled": true
  },
  "currency": "USD",
  "railsId": "BOA_RAIL",
  "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "payorId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "notifications": {
    "minimumBalance": 120000
  }
}

Changes