Adyen · JSON Structure

Terminal Payment Request Structure

Request sent to terminal to initiate payment. It conveys Information related to the Payment transaction to process. Content of the Payment Request message.

Type: object Properties: 4 Required: 2
PaymentsFinancial ServicesFintech

PaymentRequest is a JSON Structure definition published by Adyen, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SaleData PaymentTransaction PaymentData LoyaltyData

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-payment-request-structure.json",
  "description": "Request sent to terminal to initiate payment.  It conveys Information related to the Payment transaction to process. Content of the Payment Request message.",
  "type": "object",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "PaymentTransaction": {
      "$ref": "#/components/schemas/PaymentTransaction"
    },
    "PaymentData": {
      "$ref": "#/components/schemas/PaymentData"
    },
    "LoyaltyData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LoyaltyData"
      }
    }
  },
  "required": [
    "SaleData",
    "PaymentTransaction"
  ],
  "name": "PaymentRequest"
}