Adyen · JSON Structure

Terminal Original Poi Transaction Structure

In the Payment or the Loyalty Request message, it allows using the card of a previous CardAcquisition or Payment/Loyalty request. Identification of a previous POI transaction.

Type: object Properties: 9
PaymentsFinancial ServicesFintech

OriginalPOITransaction is a JSON Structure definition published by Adyen, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

SaleID POIID POITransactionID ReuseCardDataFlag ApprovalCode CustomerLanguage AcquirerID AmountValue HostTransactionID

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-original-poi-transaction-structure.json",
  "description": "In the Payment or the Loyalty Request message, it allows using the card of a previous CardAcquisition or Payment/Loyalty request. Identification of a previous POI transaction.",
  "type": "object",
  "properties": {
    "SaleID": {
      "type": "string",
      "pattern": "^.+$",
      "description": "Identification of a Sale System or a Sale Terminal for the Sale to POI protocol."
    },
    "POIID": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If original transaction is coming from another POI."
    },
    "POITransactionID": {
      "$ref": "#/components/schemas/TransactionIDType"
    },
    "ReuseCardDataFlag": {
      "type": "boolean",
      "default": true,
      "description": "Indicate if the card data has to be got from a previous transaction."
    },
    "ApprovalCode": {
      "type": "string",
      "pattern": "^.+$",
      "description": "If referral."
    },
    "CustomerLanguage": {
      "type": "string",
      "pattern": "^[a-z]{2,2}$",
      "description": "If the language is selected by the Sale System before the request to the POI."
    },
    "AcquirerID": {
      "type": "int32",
      "description": "Restrict to these Acquirer if present."
    },
    "AmountValue": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "HostTransactionID": {
      "$ref": "#/components/schemas/TransactionIDType"
    }
  },
  "name": "OriginalPOITransaction"
}