Paytronix · JSON Structure

Server Api Transaction History Reply Structure

TransactionHistoryReply schema from Paytronix Server API

Type: object Properties: 3
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

result walletInfo transactions

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-history-reply-structure.json",
  "name": "TransactionHistoryReply",
  "description": "TransactionHistoryReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "walletInfo": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WalletBalance"
      }
    },
    "transactions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "transactionId": {
            "type": "string"
          },
          "datetime": {
            "type": "datetime"
          },
          "type": {
            "type": "string",
            "example": "ACCRUAL"
          },
          "walletCode": {
            "type": "string"
          },
          "amount": {
            "type": "double"
          },
          "balance": {
            "type": "double"
          }
        }
      }
    }
  }
}