Paytronix · Schema

AccountQueryRequest

AccountQueryRequest schema from Paytronix Server API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
headerInfo object
pageSize integer
accountQueries array
View JSON Schema on GitHub

JSON Schema

server-api-account-query-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccountQueryRequest",
  "description": "AccountQueryRequest schema from Paytronix Server API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-account-query-request-schema.json",
  "type": "object",
  "properties": {
    "headerInfo": {
      "$ref": "#/components/schemas/HeaderInfo"
    },
    "pageSize": {
      "type": "integer",
      "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"
  ]
}