Paytronix · JSON Structure

Server Api Add Redeem Reply Structure

AddRedeemReply schema from Paytronix Server API

Type: object Properties: 3
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

AddRedeemReply 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 pxTransactionId walletContents

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-add-redeem-reply-structure.json",
  "name": "AddRedeemReply",
  "description": "AddRedeemReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "pxTransactionId": {
      "type": "string",
      "example": "TXN-67890"
    },
    "walletContents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WalletBalance"
      }
    }
  }
}