Skip to content

Daily Menu

Danger

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
Cloud 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

Header Parameters

Name Type Description
Authorization* string Bearer accessToken

Query Parameters

Name Type Description
sort string
filter string
page string
limnit string

Responses

{
    // Response
}

Get daily menu

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

Path Parameters

Name Type Description
cloudId* integer
dailyMenuId* integer

Header Parameters

Name Type Description
Authorization* string Bearer accessToken

Responses

{
    // Response
}

Options daily menus

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

Path Parameters

Name Type Description
cloudId* integer

Header Parameters

Name Type Description
Authorization* string Bearer accessToken

Responses

{
    // Response
}

Options daily menu

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

Path Parameters

Name Type Description
cloudId* integer
dailyMenuId* integer

Header Parameters

Name Type Description
Authorization* string Bearer accessToken

Responses

{
    // Response
}