GET
/
v1
/
bank-account-verification
/
{id}
Get bank account verification
curl --request GET \
  --url http://localhost:3001/v1/bank-account-verification/{id}
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "bankAccount": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "iban": "<string>",
    "bic": "<string>",
    "countryCode": "<string>",
    "address": "<string>"
  },
  "paymentProvider": "<string>",
  "status": "VALID",
  "initializedAt": "2023-11-07T05:31:56Z",
  "mailTrackings": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "version": 123,
    "type": "ONBOARDING",
    "status": "ACCEPTED"
  },
  "fullName": "<string>"
}

Path Parameters

id
string
required

BankAccountVerification ID

Response

200
application/json

The response is of type object.