Adyen · Schema

CheckoutThreeDS2Action

CheckoutThreeDS2Action schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
authorisationToken string A token needed to authorise a payment.
paymentData string Encoded payment data.
paymentMethodType string Specifies the payment method.
subtype string A subtype of the token.
token string A token to pass to the 3DS2 Component to get the fingerprint.
type string **threeDS2**
url string Specifies the URL to redirect to.
View JSON Schema on GitHub

JSON Schema

checkout-checkout-three-ds2-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-checkout-three-ds2-action-schema.json",
  "title": "CheckoutThreeDS2Action",
  "description": "CheckoutThreeDS2Action schema from Adyen API",
  "type": "object",
  "properties": {
    "authorisationToken": {
      "description": "A token needed to authorise a payment.",
      "type": "string"
    },
    "paymentData": {
      "description": "Encoded payment data.",
      "type": "string"
    },
    "paymentMethodType": {
      "description": "Specifies the payment method.",
      "type": "string"
    },
    "subtype": {
      "description": "A subtype of the token.",
      "type": "string"
    },
    "token": {
      "description": "A token to pass to the 3DS2 Component to get the fingerprint.",
      "type": "string"
    },
    "type": {
      "description": "**threeDS2**",
      "enum": [
        "threeDS2"
      ],
      "type": "string"
    },
    "url": {
      "description": "Specifies the URL to redirect to.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}