IdentifyLoyalty

User information on the Loyalty user identified

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
balances array The loyalty user's balances
loyaltyId object
transactionId object
View JSON Schema on GitHub

JSON Schema

channel-identify-loyalty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IdentifyLoyalty",
  "description": "User information on the Loyalty user identified",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/channel-identify-loyalty-schema.json",
  "type": "object",
  "properties": {
    "balances": {
      "description": "The loyalty user's balances\n",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Balance"
      }
    },
    "loyaltyId": {
      "$ref": "#/components/schemas/LoyaltyId"
    },
    "transactionId": {
      "$ref": "#/components/schemas/LoyaltyTransactionId"
    }
  },
  "required": [
    "balances",
    "loyaltyId",
    "transactionId"
  ]
}