Adyen · Schema

MbwayDetails

MbwayDetails schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
checkoutAttemptId string The checkout attempt identifier.
shopperEmail string
telephoneNumber string
type string **mbway**
View JSON Schema on GitHub

JSON Schema

checkout-mbway-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-mbway-details-schema.json",
  "title": "MbwayDetails",
  "description": "MbwayDetails schema from Adyen API",
  "type": "object",
  "properties": {
    "checkoutAttemptId": {
      "x-addedInVersion": "68",
      "description": "The checkout attempt identifier.",
      "type": "string"
    },
    "shopperEmail": {
      "description": "",
      "type": "string"
    },
    "telephoneNumber": {
      "description": "",
      "type": "string"
    },
    "type": {
      "default": "mbway",
      "description": "**mbway**",
      "enum": [
        "mbway"
      ],
      "type": "string"
    }
  },
  "required": [
    "telephoneNumber",
    "shopperEmail"
  ],
  "additionalProperties": false
}