Getting your Verification Report
Fetch an account verification report using the access token from the previous steps.
Authorization
To fetch a verification report, customers require the access token obtained in the previous steps. Use this token to make requests to the account verification endpoint.
Endpoints Overview
Request Example:
GET /rest/account-verifications/{account-verification-id}Example Response:
{
"id": "9054f9b1-0d19-4788-a990-b493d5723419",
"provided": {
"name": "Max Mustermann",
"iban": "DE93300308800013441006"
},
"matched": {
"name": "Max Mustermann",
"affinity": "VERY_HIGH"
},
"account": {
"name": "FlexiCash",
"type": "Giro account",
"owners": [],
"iban": "DE93300308800013441006",
"currency": "EUR"
}
}The verification report provides an evaluation of the affinity between the initially provided name and the best matching account-holder name.
The affinity is defined as follows:
VERY_HIGHif the names literally match (case-insensitive)HIGHif there is a significant overlap with only minor deviations (e.g. "Doe, John"
instead of "John Doe" or "Hans Muller" instead of "Hans Müller")MEDIUMif there is only some similarity between the names (e.g. "Helge Braun" vs.
"Stefan Braun")LOWif the names don't match at all.
Under normal circumstances, it is advised to consider the affinities
VERY_HIGHandHIGHas a match and disregardMEDIUMandLOWaffinities. The receipt also contains basic account information such as the IBAN, type, and account name.
Error Handling
The finX API employs HTTP status codes to indicate the outcome of each API request. Familiarity with these codes is essential for understanding the response.
200 OK: This status code indicates a successful request, typically returned when retrieving the verification report.
400 Bad Request: If the request is malformed, contains missing or invalid parameters, or violates validation rules, the API responds with a 400 status code.
401 Unauthorized: When the provided authorization is insufficient or invalid, the API responds with a 401 status code, indicating the need for proper user authentication.
404 Not Found: This status code signifies that the specified resource or endpoint is not available or could not be found.
Updated 2 days ago
