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>"
}
Retrieve the details of an existing 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>"
}
BankAccountVerification ID
The response is of type object
.