GET
/
api
/
payments
/
v3
/
bank-accounts
/
{bankAccountID}
curl --request GET \
  --url http://localhost:55001/api/payments/v3/bank-accounts/{bankAccountID}
{
  "data": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "accountNumber": "<string>",
    "iban": "<string>",
    "swiftBicCode": "<string>",
    "country": "<string>",
    "metadata": {},
    "relatedAccounts": [
      {
        "accountID": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Path Parameters

bankAccountID
string
required

The bank account ID

Response

200
application/json

OK

The response is of type object.