Paytronix · Schema

WalletBalance

WalletBalance schema from Paytronix Server API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
walletCode string
name string
balance number
View JSON Schema on GitHub

JSON Schema

server-api-wallet-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WalletBalance",
  "description": "WalletBalance schema from Paytronix Server API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-wallet-balance-schema.json",
  "type": "object",
  "properties": {
    "walletCode": {
      "type": "string",
      "example": "1"
    },
    "name": {
      "type": "string",
      "example": "Points"
    },
    "balance": {
      "type": "number",
      "example": 1250
    }
  }
}