Adyen · Schema

CheckoutDelegatedAuthenticationAction

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.
token string A token to pass to the delegatedAuthentication component.
type string **delegatedAuthentication**
url string Specifies the URL to redirect to.
View JSON Schema on GitHub

JSON Schema

adyen-checkoutdelegatedauthenticationaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckoutDelegatedAuthenticationAction",
  "title": "CheckoutDelegatedAuthenticationAction",
  "additionalProperties": false,
  "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"
    },
    "token": {
      "description": "A token to pass to the delegatedAuthentication component.",
      "type": "string"
    },
    "type": {
      "description": "**delegatedAuthentication**",
      "enum": [
        "delegatedAuthentication"
      ],
      "type": "string"
    },
    "url": {
      "description": "Specifies the URL to redirect to.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}