Skip to content

Latest commit

 

History

History
94 lines (69 loc) · 2.1 KB

File metadata and controls

94 lines (69 loc) · 2.1 KB

Fluent Finance Adapter

2.0.6 v2

Fluent Finance Adapter for retrieving bank balances

Base URL https://gateway.fluent.finance/v1/gateway/

This document was generated automatically. Please see README Generator for more info.

Environment Variables

There are no environment variables for this adapter.


Data Provider Rate Limits

There are no rate limits for this adapter.


Input Parameters

Every EA supports base input parameters from this list

Required? Name Description Type Options Default
endpoint The endpoint to use string balances balances

Balances Endpoint

Cash and equivalent balances for Fluent Finance US Plus' reserve accounts

balances is the only supported name for this endpoint.

Input Params

There are no input parameters for this endpoint.

Example

Request:

{
  "id": "1",
  "data": {
    "endpoint": "balances",
    "resultPath": "availableBalance"
  },
  "debug": {
    "cacheKey": "0hnYhP7n2/kUxBQlfkRr6Xhck4Q="
  }
}

Response:

{
  "jobRunID": "1",
  "data": {
    "payload": [
      {
        "number": "9000000003481",
        "name": "*Checking Account*",
        "type": "SAVINGS",
        "balance": 24681.55,
        "availableBalance": 24681.55,
        "active": true,
        "currencyCode": "USD"
      },
      {
        "number": "9000000003482",
        "name": "*Checking Account*",
        "type": "SAVINGS",
        "balance": 0,
        "availableBalance": 0,
        "active": true,
        "currencyCode": "USD"
      }
    ],
    "result": 24681.55
  },
  "result": 24681.55,
  "statusCode": 200,
  "providerStatusCode": 200
}

MIT License