Adyen · Schema

PaymentVerificationRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
payload string Encrypted and signed payment result data. You should receive this value from the Checkout SDK after the shopper completes the payment.
View JSON Schema on GitHub

JSON Schema

adyen-paymentverificationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentVerificationRequest",
  "title": "PaymentVerificationRequest",
  "properties": {
    "payload": {
      "description": "Encrypted and signed payment result data. You should receive this value from the Checkout SDK after the shopper completes the payment.",
      "maxLength": 40000,
      "type": "string"
    }
  },
  "required": [
    "payload"
  ],
  "type": "object"
}