Adyen · Schema
ThreeDSRequestorPriorAuthenticationInfo
ThreeDSRequestorPriorAuthenticationInfo schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| threeDSReqPriorAuthData | string | Data that documents and supports a specific authentication process. Maximum length: 2048 bytes. |
| threeDSReqPriorAuthMethod | string | Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. Allowed values: * **01** — Frictionless authentication occurred by ACS. * **02** — Cardholder challenge occurred by AC |
| threeDSReqPriorAuthTimestamp | string | Date and time in UTC of the prior cardholder authentication. Format: YYYYMMDDHHMM |
| threeDSReqPriorRef | string | This data element provides additional information to the ACS to determine the best approach for handing a request. This data element contains an ACS Transaction ID for a prior authenticated transactio |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/payments-three-ds-requestor-prior-authentication-info-schema.json",
"title": "ThreeDSRequestorPriorAuthenticationInfo",
"description": "ThreeDSRequestorPriorAuthenticationInfo schema from Adyen API",
"type": "object",
"properties": {
"threeDSReqPriorAuthData": {
"description": "Data that documents and supports a specific authentication process. Maximum length: 2048 bytes.",
"type": "string"
},
"threeDSReqPriorAuthMethod": {
"description": "Mechanism used by the Cardholder to previously authenticate to the 3DS Requestor. Allowed values:\n* **01** \u2014 Frictionless authentication occurred by ACS.\n* **02** \u2014 Cardholder challenge occurred by ACS.\n* **03** \u2014 AVS verified.\n* **04** \u2014 Other issuer methods.",
"enum": [
"01",
"02",
"03",
"04"
],
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"threeDSReqPriorAuthTimestamp": {
"description": "Date and time in UTC of the prior cardholder authentication. Format: YYYYMMDDHHMM",
"maxLength": 12,
"minLength": 12,
"type": "string"
},
"threeDSReqPriorRef": {
"description": "This data element provides additional information to the ACS to determine the best approach for handing a request. This data element contains an ACS Transaction ID for a prior authenticated transaction. For example, the first recurring transaction that was authenticated with the cardholder. Length: 30 characters.",
"maxLength": 36,
"minLength": 36,
"type": "string"
}
}
}