Properties
| Name | Type | Description |
|---|---|---|
| challengeCancel | string | Indicator informing the Access Control Server (ACS) and the Directory Server (DS) that the authentication has been cancelled. For possible values, refer to [3D Secure API reference](https://docs.adyen |
| flow | string | The flow used in the challenge. Possible values: * **OTP_SMS**: one-time password (OTP) flow * **OOB**: out-of-band (OOB) flow |
| lastInteraction | string | The last time of interaction with the challenge. |
| phoneNumber | string | The last four digits of the phone number used in the challenge. |
| resends | integer | The number of times the one-time password (OTP) was resent during the challenge. |
| retries | integer | The number of retries used in the challenge. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ChallengeInfo",
"title": "ChallengeInfo",
"properties": {
"challengeCancel": {
"description": "Indicator informing the Access Control Server (ACS) and the Directory Server (DS) that the authentication has been cancelled. For possible values, refer to [3D Secure API reference](https://docs.adyen.com/online-payments/3d-secure/api-reference#mpidata).",
"enum": [
"01",
"02",
"03",
"04",
"05",
"06",
"07"
],
"type": "string"
},
"flow": {
"description": "The flow used in the challenge. Possible values:\n\n* **OTP_SMS**: one-time password (OTP) flow\n* **OOB**: out-of-band (OOB) flow",
"enum": [
"OTP_SMS",
"OOB"
],
"type": "string"
},
"lastInteraction": {
"description": "The last time of interaction with the challenge.",
"format": "date-time",
"type": "string"
},
"phoneNumber": {
"description": "The last four digits of the phone number used in the challenge.",
"type": "string"
},
"resends": {
"description": "The number of times the one-time password (OTP) was resent during the challenge.",
"format": "int32",
"type": "integer"
},
"retries": {
"description": "The number of retries used in the challenge.",
"format": "int32",
"type": "integer"
}
},
"required": [
"flow",
"lastInteraction"
],
"type": "object"
}