Person identifications

(Bankident only) Index person bank identification attempts

Returns all bank identifications attempts for the person specified in the request URL.

get/v1/persons/{person_id}/bank_identification_attempts

Path parameters

person_idstring required

The unique ID of the person resource created for a customer.

Example:dc1a6812a14f6cc338cd084208535bcdcper

Response

Successful result of the operation

idstring

ID of the bank identification attempt.

person_idstring

ID of the person undergoing the bank identification attempt.

identification_idstring

ID of the associated person identification.

successfulboolean

Indicates whether or not the bank identification attempt succeeded.

failure_reasonstring

If the bank identification attempt failed, then this property will contain a string explaining the reason for the failure.

ibanstring

The customer's IBAN. Use this field for the identification methods bank and bank_id.

created_atstring

Date and time when the bank identification attempt was created.

Example response

[
  {
    "id": "17a7389adaf83145770d8e6c00a398dfiatm",
    "person_id": "e2bbc86268e9a4667861b73f31dba03bcper",
    "identification_id": "efa83e0d8a9f33be3aeb5b5122d759adcidt",
    "successful": true,
    "iban": "DE11110101010100000020",
    "created_at": "2021-06-25T09:44:25.000Z"
  }
]