v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Bank Accounts

Save bank accounts

Save new (or update existing) bank accounts

post/v6/banks/accounts

Request body

Example request

{
  "data": [
    {
      "id": "bka_28868401",
      "name": "Chase Checking",
      "status": "ACTIVE",
      "apiName": "PLAID",
      "iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
      "mask": "1234",
      "type": "DEPOSITORY",
      "syncTransactions": true,
      "tranStartDate": "2025-01-01",
      "beginningBalance": 100000,
      "customData": {
        "internal_key": "some_internal_key",
        "some_other_field": 23434
      }
    }
  ]
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": [
    {
      "data": {
        "id": "123456",
        "status": "ACTIVE",
        "apiName": "PLAID",
        "iconUrl": "https://cdn.sandbox.tight.com/icons/banks/56.png",
        "name": "Chase Checking",
        "mask": "1234",
        "type": "DEPOSITORY",
        "subType": "CHECKING",
        "syncTransactions": true,
        "isSupported": true,
        "latestTransactionDate": "2025-01-01",
        "accountBalance": 100000
      }
    }
  ]
}