Funding Manager

Get list of source accounts

List source accounts.

get/v1/sourceAccounts

Query parameters

physicalAccountNamestring

Physical Account Name

payorIdstring uuid

The account owner Payor ID

pageinteger

Page number. Default is 1.

pageSizeinteger

The number of results to return in a page

sortstring

List of sort fields e.g. ?sort=name:asc Default is name:asc The supported sort fields are - fundingRef

Response

List Source Account response

Example response

{
  "links": [
    {
      "rel": "first",
      "href": "https://api.sandbox.velopayments.com/v1/sourceAccounts?payorId=a2967711-df07-41e5-b5ea-f563088911c6&page=1&pageSize=0&sort=fundingRef:asc"
    },
    {
      "rel": "first",
      "href": "https://api.sandbox.velopayments.com/v1/sourceAccounts?payorId=a2967711-df07-41e5-b5ea-f563088911c6&page=1&pageSize=0&sort=fundingRef:asc"
    }
  ],
  "page": {
    "numberOfElements": 1,
    "totalPages": 2,
    "pageSize": 25,
    "page": 1,
    "totalElements": 1
  },
  "content": [
    {
      "physicalAccountName": "VELO_FBO_MYBANKA_USD",
      "accountType": "FBO",
      "fundingAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "fundingRef": "a1b2c3d4",
      "balance": 1203489,
      "pooled": true,
      "name": "MyAccountName",
      "customerId": "Joe Customer",
      "physicalAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "currency": "USD",
      "railsId": "BOA_RAIL",
      "balanceVisible": true,
      "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "payorId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91"
    },
    {
      "physicalAccountName": "VELO_FBO_MYBANKA_USD",
      "accountType": "FBO",
      "fundingAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "fundingRef": "a1b2c3d4",
      "balance": 1203489,
      "pooled": true,
      "name": "MyAccountName",
      "customerId": "Joe Customer",
      "physicalAccountId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "currency": "USD",
      "railsId": "BOA_RAIL",
      "balanceVisible": true,
      "id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
      "payorId": "046b6c7f-0b8a-43b9-b35d-6489e6daee91"
    }
  ]
}

Changes