Paytronix · Schema

GiftRequest

GiftRequest schema from Paytronix Server API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
merchantId integer
storeCode string
cardInfo object
amount number
checkNumber string
cashier string
terminalId string
externalTransactionId string
View JSON Schema on GitHub

JSON Schema

server-api-gift-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GiftRequest",
  "description": "GiftRequest schema from Paytronix Server API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-gift-request-schema.json",
  "type": "object",
  "properties": {
    "merchantId": {
      "type": "integer",
      "example": 1000
    },
    "storeCode": {
      "type": "string",
      "example": "1"
    },
    "cardInfo": {
      "$ref": "#/components/schemas/CardInfo"
    },
    "amount": {
      "type": "number",
      "example": 25.0
    },
    "checkNumber": {
      "type": "string"
    },
    "cashier": {
      "type": "string"
    },
    "terminalId": {
      "type": "string"
    },
    "externalTransactionId": {
      "type": "string"
    }
  },
  "required": [
    "merchantId",
    "storeCode",
    "cardInfo",
    "amount"
  ]
}