Paytronix · Schema

HeaderInfo

Common transaction header. programId is PX, SV, or LP.

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
merchantId integer
storeCode string
programId string
terminal string
operator string
posTransactionId string
View JSON Schema on GitHub

JSON Schema

server-api-header-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HeaderInfo",
  "description": "Common transaction header. programId is PX, SV, or LP.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-header-info-schema.json",
  "type": "object",
  "properties": {
    "merchantId": {
      "type": "integer",
      "example": 1000
    },
    "storeCode": {
      "type": "string",
      "example": "1"
    },
    "programId": {
      "type": "string",
      "example": "PX"
    },
    "terminal": {
      "type": "string",
      "example": "1"
    },
    "operator": {
      "type": "string",
      "example": "100"
    },
    "posTransactionId": {
      "type": "string"
    }
  }
}