Adyen · Schema

CheckoutAwaitAction

CheckoutAwaitAction schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
paymentData string Encoded payment data.
paymentMethodType string Specifies the payment method.
type string **await**
url string Specifies the URL to redirect to.
View JSON Schema on GitHub

JSON Schema

checkout-checkout-await-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-await-action-schema.json",
  "title": "CheckoutAwaitAction",
  "description": "CheckoutAwaitAction schema from Adyen API",
  "type": "object",
  "properties": {
    "paymentData": {
      "description": "Encoded payment data.",
      "type": "string"
    },
    "paymentMethodType": {
      "description": "Specifies the payment method.",
      "type": "string"
    },
    "type": {
      "description": "**await**",
      "enum": [
        "await"
      ],
      "type": "string"
    },
    "url": {
      "description": "Specifies the URL to redirect to.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}