Listing beneficiaries

GET /api/public/v1/bank_accounts

This endpoint returns a list of bank accounts linked to your Txn account.

Headers

NameValue

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

Response

{
  "data": [
    {
      "id": "f96d0db2-3e5d-42b4-8e36-7a0ea2a951fe",
      "type": "bank_accounts",
      "attributes": {
        "beneficiaryName": "Acme LLC",
        "currencyCode": "EUR",
        "iban": "GB94BARC10201530093459",
        "createdAt": "2024-10-24T14:13:11.802Z",
        "updatedAt": "2024-10-24T14:13:11.802Z"
      }
    },
    {
      "id": "28682124-a332-42c1-81bd-ba8da083d3df",
      "type": "bank_accounts",
      "attributes": {
        "beneficiaryName": "Acme LLC",
        "currencyCode": "EUR",
        "iban": "GB94BARC10201530093458",
        "createdAt": "2024-10-31T10:49:42.801Z",
        "updatedAt": "2024-10-31T10:49:42.801Z"
      }
    }
  ],
  "meta": {},
  "jsonapi": {
    "version": "1.0"
  }
}

Last updated