Punchh · Schema

MarkOffersReadRequest

MarkOffersReadRequest schema from PAR Punchh Mobile API

RestaurantLoyaltyMarketingGuest EngagementOnline OrderingMobilePoint Of SaleWebhooks

Properties

Name Type Description
client string OAuth client ID provided by the business.
event_type string
rewards string Comma-separated IDs of rewards.
user_notifications string Comma-separated IDs of user notifications.
View JSON Schema on GitHub

JSON Schema

mobile-mark-offers-read-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MarkOffersReadRequest",
  "description": "MarkOffersReadRequest schema from PAR Punchh Mobile API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/punchh/refs/heads/main/json-schema/mobile-mark-offers-read-request-schema.json",
  "type": "object",
  "properties": {
    "client": {
      "type": "string",
      "description": "OAuth client ID provided by the business.",
      "example": "business_client_key"
    },
    "event_type": {
      "type": "string",
      "enum": [
        "read_through_app",
        "app_open_via_push"
      ],
      "example": "read_through_app"
    },
    "rewards": {
      "type": "string",
      "description": "Comma-separated IDs of rewards.",
      "example": "example"
    },
    "user_notifications": {
      "type": "string",
      "description": "Comma-separated IDs of user notifications.",
      "example": "example"
    }
  },
  "required": [
    "client"
  ]
}