Lunchbox · Schema

AuthSession

AuthSession schema from Lunchbox Core API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
customer_id integer
auth_cookie string
View JSON Schema on GitHub

JSON Schema

core-auth-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AuthSession",
  "description": "AuthSession schema from Lunchbox Core API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-auth-session-schema.json",
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "integer",
      "example": 1234
    },
    "auth_cookie": {
      "type": "string",
      "example": "string"
    }
  }
}