Adyen · Schema

DragonpayDetails

DragonpayDetails schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
checkoutAttemptId string The checkout attempt identifier.
issuer string The Dragonpay issuer value of the shopper's selected bank. Set this to an **id** of a Dragonpay issuer to preselect it.
shopperEmail string The shopper’s email address.
type string **dragonpay**
View JSON Schema on GitHub

JSON Schema

checkout-dragonpay-details-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-dragonpay-details-schema.json",
  "title": "DragonpayDetails",
  "description": "DragonpayDetails schema from Adyen API",
  "type": "object",
  "properties": {
    "checkoutAttemptId": {
      "x-addedInVersion": "68",
      "description": "The checkout attempt identifier.",
      "type": "string"
    },
    "issuer": {
      "description": "The Dragonpay issuer value of the shopper's selected bank. Set this to an **id** of a Dragonpay issuer to preselect it.",
      "type": "string"
    },
    "shopperEmail": {
      "description": "The shopper\u2019s email address.",
      "type": "string"
    },
    "type": {
      "description": "**dragonpay**",
      "enum": [
        "dragonpay_ebanking",
        "dragonpay_otc_banking",
        "dragonpay_otc_non_banking",
        "dragonpay_otc_philippines"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "issuer"
  ],
  "additionalProperties": false
}