Paytronix · JSON Structure

Server Api Account Query Request Structure

AccountQueryRequest schema from Paytronix Server API

Type: object Properties: 3 Required: 2
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

headerInfo pageSize accountQueries

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-request-structure.json",
  "name": "AccountQueryRequest",
  "description": "AccountQueryRequest schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "headerInfo": {
      "$ref": "#/components/schemas/HeaderInfo"
    },
    "pageSize": {
      "type": "int32",
      "example": 25
    },
    "accountQueries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "phone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "postalCode": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "headerInfo",
    "accountQueries"
  ]
}