Balances

Get Balances

GEThttps://secure.tell.systems/algbra/open-banking/v3.1/aisp/accounts/{AccountId}/balances
Authorization
Path parameters
AccountId*string

AccountId

Header parameters
Response

Balances Read

Headers
Body
Data*object
Links*Links (object)

Links relevant to the payload

Meta*MetaData

Meta Data relevant to the payload

Request
const response = await fetch('https://secure.tell.systems/algbra/open-banking/v3.1/aisp/accounts/{AccountId}/balances', {
    method: 'GET',
    headers: {
      "x-fapi-financial-id": "ea01566d-f21d-49af-9d0c-b74fbe36911f"
    },
});
const data = await response.json();
Response
{
  "Data": {
    "Balance": [
      {
        "AccountId": "text",
        "CreditDebitIndicator": "Credit",
        "Type": "ClosingAvailable",
        "DateTime": "2024-11-21T09:41:25.633Z",
        "Amount": {
          "Amount": "text",
          "Currency": "text"
        },
        "CreditLine": [
          {
            "Included": false,
            "Type": "Available",
            "Amount": {
              "Amount": "text",
              "Currency": "text"
            }
          }
        ]
      }
    ]
  },
  "Links": {
    "Self": "https://example.com",
    "First": "https://example.com",
    "Prev": "https://example.com",
    "Next": "https://example.com",
    "Last": "https://example.com"
  },
  "Meta": {
    "FirstAvailableDateTime": "2024-11-21T09:41:25.633Z",
    "LastAvailableDateTime": "2024-11-21T09:41:25.633Z"
  }
}

Last updated