Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Depending on the configured or requested QoA QoR by the application - or implicitly by the requested Level of Trust - the user has to fulfill no verification (QoA1QoR1), fulfill either the manual identification or video identification method (QoA2QoR2) or the requirements from QoA2 QoR2 and the API verification method (QoA3QoR3).

QoR Claims

In the id_token you will get a list of QoA’s QoR’s the the user has passed in the fulfilled_qors claim.

...

There is currently no configuration user interface for this. The configuration is linked to the Level of Trust and stored in the servicecorelogin_quality_of_registration table. There you can define different QualityOfRegistrationSteps which have to match the documented enum below. In upcoming versions there will be a user interface for this configuration.

Up to v9.0.3

Code Block
public enum QualityOfRegistrationSteps
{
    Dummy, //0
    None, //1
    AutoOrManual, //2
    AutoOrManualAndAhv, //3
}

As of v9.1.0

Code Block
public enum QualityOfRegistrationSteps
{
    Dummy, //0
    None, //1
    AutoOrManual, //2
    AutoOrManualAndAhv, //3
    Auto, //4
    AutoAndAhv //5
}

Meaning of Auto: Self-Registration on a mobile phone using a browser-guided process controlled by fidentity.

Meaning of Manual: Manual registration at a government agency based on a pre-printed form which includes a 2D barcode (HTTPS Link).

Meaning of AutoOrManualAndAHV: To achieve this QoR, you have to achieve: ( (“Auto” or “Manual”) AND AHV-Check )

For example: if you want only None, Auto and AutoAndAhv your servicecorelogin_quality_of_registration needs only 3 rows with the steps 1, 4 and 5.