API
User Manual
  • Introduction to API v2
  • Guides
    • Getting started
    • Authorization
    • Delivery Notes Integrations
  • API Reference
    • General
      • Data types
        • Validation
        • Prices
      • Schema
      • Flags
      • ETags
        • ETag examples
      • Filtering
      • Sorting
      • Paging
      • Methods
      • HTTP Status Codes
    • Enums
      • Payment methods
      • Units
      • Order status
  • Entity
    • Attendance
    • Branch
    • Category
    • Cloud
    • Course
    • Customer
    • Customer Account
    • Customer Account Log
    • Daily Menu
    • Daily Menu Product
    • Delivery Note
    • Discount group
    • EET subject
    • Employee
    • Money log
    • Order
    • Order item
    • Product
    • Product Customization
    • Product Ingredient
    • Reservation
    • Stock Packaging
    • Supplier
    • Table
    • Tag
    • Tax (VAT rates)
    • Warehouse
    • Warehouse Branch
  • Others
    • Reports
      • Base Sales Report
    • POS actions
    • Release notes
    • Breaking changes
    • Webhook
    • Third-party libraries
  • Migration
    • Migrating from API v1
    • API v1 Services
      • Branch Service
      • Category Service
      • Customer Service
      • Employee Service
      • OAuth2 Login Service
      • POS action service
      • Product Service
      • Reservation Service
      • Sale Service
      • Stock Service
      • Supplier Service
      • Tableseat Service
      • Tag Service
      • Warehouse Service
Powered by GitBook
On this page
  • Daily Menu schema
  • JSON response
  • Get daily menus
  • Get daily menu
  • Options daily menus
  • Options daily menu

Was this helpful?

Export as PDF
  1. Entity

Daily Menu

PreviousCustomer Account LogNextDaily Menu Product

Last updated 2 years ago

Was this helpful?

API for Daily Menu is unstable - the schema may change in the future.

Daily Menu schema

id long? Daily menu ID - cannot be null in PUT/PATCH methods 📶 EQUALS,ENUM

_cloudId long ID

deleted boolean Daily menu deleted 📶 EQUALS,ENUM

footer string? Text of menu menu footer

header string? Text of menu header

validFrom timestamp Menu is available from this date and time 📶 EQUALS,ENUM,NUMBER 🔽 BOTH

validUntil timestamp Menu is available until this date and time 📶 EQUALS,ENUM,NUMBER

versionDate timestamp? Last modification date and time 📶 EQUALS,ENUM,NUMBER

JSON response

{
    "_cloudId": <integer>,
    "deleted": <boolean,
    "footer": <string>,
    "header": <string>,
    "id": <long>,
    "validFrom": <timestamp>,
    "validUntil": <timestamp>,
    "versionDate": <timestamp>
}

Get daily menus

GET https://api.dotykacka.cz /v2/clouds/:cloudId/daily-menus

Path Parameters

Name
Type
Description

cloudId*

integer

Query Parameters

Name
Type
Description

sort

string

filter

string

page

string

limnit

string

Headers

Name
Type
Description

Authorization*

string

Bearer accessToken

{
    // Response
}

Get daily menu

GET https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus/:dailyMenuId

Path Parameters

Name
Type
Description

cloudId*

integer

dailyMenuId*

integer

Headers

Name
Type
Description

Authorization*

string

Bearer accessToken

{
    // Response
}

Options daily menus

OPTIONS https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus

Path Parameters

Name
Type
Description

cloudId*

integer

Headers

Name
Type
Description

Authorization*

string

Bearer accessToken

{
    // Response
}

Options daily menu

OPTIONS https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus/:dailyMenuId

Path Parameters

Name
Type
Description

cloudId*

integer

dailyMenuId*

integer

Headers

Name
Type
Description

Authorization*

string

Bearer accessToken

{
    // Response
}
Cloud