Adyen · Schema

AuthenticationResultRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
merchantAccount string The merchant account identifier, with which the authentication was processed.
pspReference string The pspReference identifier for the transaction.
View JSON Schema on GitHub

JSON Schema

adyen-authenticationresultrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthenticationResultRequest",
  "title": "AuthenticationResultRequest",
  "properties": {
    "merchantAccount": {
      "description": "The merchant account identifier, with which the authentication was processed.",
      "type": "string"
    },
    "pspReference": {
      "description": "The pspReference identifier for the transaction.",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "pspReference"
  ],
  "type": "object"
}