Paytronix · JSON Structure

Server Api User Information Reply Structure

UserInformationReply schema from Paytronix Server API

Type: object Properties: 4
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

result userFields primaryCardNumbers accountIds

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-user-information-reply-structure.json",
  "name": "UserInformationReply",
  "description": "UserInformationReply schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "userFields": {
      "type": "object",
      "additionalProperties": true,
      "example": {
        "firstName": "Jane",
        "lastName": "Doe",
        "email": "jane@example.com"
      }
    },
    "primaryCardNumbers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "accountIds": {
      "type": "array",
      "items": {
        "type": "int64"
      }
    }
  }
}