Paytronix · Schema

ChargeResponse

ChargeResponse schema from Paytronix Server API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
result string
amount number
cardType string
lastFour string
processorAuthCode string
transactionState string
View JSON Schema on GitHub

JSON Schema

server-api-charge-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChargeResponse",
  "description": "ChargeResponse schema from Paytronix Server API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-charge-response-schema.json",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "amount": {
      "type": "number",
      "example": 25.0
    },
    "cardType": {
      "type": "string",
      "example": "VISA"
    },
    "lastFour": {
      "type": "string",
      "example": "4242"
    },
    "processorAuthCode": {
      "type": "string",
      "example": "AUTH123"
    },
    "transactionState": {
      "type": "string",
      "example": "APPROVED"
    }
  }
}