Paytronix · JSON Structure

Server Api Account Query Reply Structure

AccountQueryReply schema from Paytronix Server API

Type: object Properties: 2
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

result accounts

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-query-reply-structure.json",
  "name": "AccountQueryReply",
  "description": "AccountQueryReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "accounts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "accountId": {
            "type": "int64"
          },
          "printedCardNumber": {
            "type": "string"
          },
          "fieldValues": {
            "type": "object",
            "additionalProperties": true
          }
        }
      }
    }
  }
}