Paytronix · JSON Structure

Server Api Transaction Reply Structure

TransactionReply schema from Paytronix Server API

Type: object Properties: 5
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

result pxTransactionId maskedCardNumber enrollmentDate walletBalances

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/paytronix/refs/heads/main/json-structure/server-api-transaction-reply-structure.json",
  "name": "TransactionReply",
  "description": "TransactionReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "pxTransactionId": {
      "type": "string",
      "example": "TXN-12345"
    },
    "maskedCardNumber": {
      "type": "string",
      "example": "******5678"
    },
    "enrollmentDate": {
      "type": "date"
    },
    "walletBalances": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WalletBalance"
      }
    }
  }
}