Adyen · Schema

MolPayDetails

MolPayDetails schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
checkoutAttemptId string The checkout attempt identifier.
issuer string The shopper's bank. Specify this with the issuer value that corresponds to this bank.
type string **molpay**
View JSON Schema on GitHub

JSON Schema

checkout-mol-pay-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-mol-pay-details-schema.json",
  "title": "MolPayDetails",
  "description": "MolPayDetails schema from Adyen API",
  "type": "object",
  "properties": {
    "checkoutAttemptId": {
      "x-addedInVersion": "68",
      "description": "The checkout attempt identifier.",
      "type": "string"
    },
    "issuer": {
      "description": "The shopper's bank. Specify this with the issuer value that corresponds to this bank.",
      "type": "string"
    },
    "type": {
      "description": "**molpay**",
      "enum": [
        "molpay_ebanking_fpx_MY",
        "molpay_ebanking_TH"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "issuer"
  ],
  "additionalProperties": false
}