Paytronix · JSON Structure

Server Api Gift Balance Request Structure

GiftBalanceRequest schema from Paytronix Server API

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

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

Properties

merchantId storeCode cardInfo

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-gift-balance-request-structure.json",
  "name": "GiftBalanceRequest",
  "description": "GiftBalanceRequest schema from Paytronix Server API",
  "type": "object",
  "properties": {
    "merchantId": {
      "type": "int32",
      "example": 1000
    },
    "storeCode": {
      "type": "string",
      "example": "1"
    },
    "cardInfo": {
      "$ref": "#/components/schemas/CardInfo"
    }
  },
  "required": [
    "merchantId",
    "storeCode",
    "cardInfo"
  ]
}