Authentication 3DS
Object
| Name | Type | Mandatory | Description |
|---|---|---|---|
| class | string | Y | The type of object which is being returned. In this case it will be authentification_3ds. |
| requested | boolean | Y | 3DS authentication process has been requested. |
| performed | boolean | Y | 3DS authentication process has been performed. |
| version | string | Y | 3DS authentication's version. This will be null if authentication has not been required. |
| status | string | Y | 3DS authentication's status. This will be null if authentication has not been required.See statuses. |
| fingerprint | boolean | Y | This will be null if authentication has not been required. |
| challenge | boolean | Y | This will be null if authentication has not been required. |
| frictionless | boolean | Y | This will be null if authentication has not been required. |
3DS authentication statuses
| Status | Description |
|---|---|
| SUCCESS | The authentication has been performed successfully. |
| FAILED | The authentication failed. |
Example
{
"class": "authentification_3ds",
"requested": true,
"performed": true,
"version": "2.2.0",
"status": "SUCCESS",
"fingerprint": false,
"challenge": false,
"frictionless": true
}