Punchh · JSON Structure

Mobile Transaction Details Request Structure

TransactionDetailsRequest schema from PAR Punchh Mobile API

Type: object Properties: 2 Required: 2
RestaurantLoyaltyMarketingGuest EngagementOnline OrderingMobilePoint Of SaleWebhooks

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

Properties

client transaction_id

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/punchh/refs/heads/main/json-structure/mobile-transaction-details-request-structure.json",
  "name": "TransactionDetailsRequest",
  "description": "TransactionDetailsRequest schema from PAR Punchh Mobile API",
  "type": "object",
  "properties": {
    "client": {
      "type": "string",
      "description": "OAuth client ID provided by the business.",
      "example": "business_client_key"
    },
    "transaction_id": {
      "type": "string",
      "description": "Receipt transaction ID from push notification payload key \"t\".",
      "example": "500123"
    }
  },
  "required": [
    "client",
    "transaction_id"
  ]
}