latestOpenAPI 3.0.12026-08-105551287.6 KB

c481fa2414f9

Person identifications

(Bankident only) Check identification eligibility

Validates whether the person specified in the request URL is eligible to complete a given identification method.

post/v1/persons/{person_id}/identification_eligibility_checks

Path parameters

person_idstring required

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

Example:dc1a6812a14f6cc338cd084208535bcdcper

Request body

method'bank'

The identification method to check for eligibility for the given person. Currently only works for Bankident.

Example request

{
  "method": "bank"
}

Response

Successful result of the operation

methodstring

Identification method to check for eligibility. Currently, only Bankident (bank) is supported.

eligibleboolean

Indicates whether the customer is eligible for the identification method.

Example response

{
  "method": "bank",
  "eligible": true,
  "reasons": [
    "match_for_person_data_not_found"
  ]
}