Reading beneficiariy

GET /api/public/v1/bank_accounts/:id

This endpoint returns details of a particular bank account by its ID.

Headers

NameValue

Content-Type

application/vnd.api+json

Authorization

Bearer <api_key>

Path Parameters

NameValue

id

Bank account ID.

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"
    }
  },
  "meta": {},
  "jsonapi": {
    "version": "1.0"
  }
}

Last updated