Paytronix · JSON Structure

Server Api Account Information Reply Structure

AccountInformationReply schema from Paytronix Server API

Type: object Properties: 10
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

result username accountStatus queryCardStatus registrationStatus cardTemplateCode tierCode primaryCard additionalCards 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-account-information-reply-structure.json",
  "name": "AccountInformationReply",
  "description": "AccountInformationReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "username": {
      "type": "string",
      "example": "jdoe"
    },
    "accountStatus": {
      "type": "string",
      "example": "ACTIVE"
    },
    "queryCardStatus": {
      "type": "string",
      "example": "ACTIVE"
    },
    "registrationStatus": {
      "type": "string",
      "example": "REGISTERED"
    },
    "cardTemplateCode": {
      "type": "string",
      "example": "1"
    },
    "tierCode": {
      "type": "string",
      "example": "GOLD"
    },
    "primaryCard": {
      "type": "string",
      "example": "60490012345678"
    },
    "additionalCards": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "walletBalances": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WalletBalance"
      }
    }
  }
}