Adyen · Schema

ThreeDSRequestData

PaymentsFinancial ServicesFintech

Properties

Name Type Description
challengeWindowSize string Dimensions of the 3DS2 challenge window to be displayed to the cardholder. Possible values: * **01** - size of 250x400 * **02** - size of 390x400 * **03** - size of 500x600 * **04** - size of 600x400
dataOnly string Flag for data only flow.
nativeThreeDS string Indicates if [native 3D Secure authentication](https://docs.adyen.com/online-payments/3d-secure/native-3ds2) should be used when available. Possible values: * **preferred**: Use native 3D Secure authe
threeDSVersion string The version of 3D Secure to use. Possible values: * **2.1.0** * **2.2.0**
View JSON Schema on GitHub

JSON Schema

adyen-threedsrequestdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreeDSRequestData",
  "title": "ThreeDSRequestData",
  "properties": {
    "challengeWindowSize": {
      "x-addedInVersion": "69",
      "description": "Dimensions of the 3DS2 challenge window to be displayed to the cardholder.\n\nPossible values:\n\n* **01** - size of 250x400 \n* **02** - size of 390x400\n* **03** - size of 500x600\n* **04** - size of 600x400\n* **05** - Fullscreen",
      "enum": [
        "01",
        "02",
        "03",
        "04",
        "05"
      ],
      "type": "string"
    },
    "dataOnly": {
      "x-addedInVersion": "69",
      "description": "Flag for data only flow.",
      "enum": [
        "false",
        "true"
      ],
      "type": "string"
    },
    "nativeThreeDS": {
      "x-addedInVersion": "69",
      "description": "Indicates if [native 3D Secure authentication](https://docs.adyen.com/online-payments/3d-secure/native-3ds2) should be used when available.\n\nPossible values:\n* **preferred**: Use native 3D Secure authentication when available.",
      "enum": [
        "preferred"
      ],
      "type": "string"
    },
    "threeDSVersion": {
      "x-addedInVersion": "69",
      "description": "The version of 3D Secure to use.\n\nPossible values:\n\n* **2.1.0**\n* **2.2.0**",
      "enum": [
        "2.1.0",
        "2.2.0"
      ],
      "type": "string"
    }
  },
  "type": "object"
}