Get menu item quarter hour totals
post
/bi/v1/{orgIdentifier}/getMenuItemQuarterHourTotals
First Available Version: 20.1.16
Get the menu item quarter hour totals for a specified location and business date.
Request
Path Parameters
-
orgIdentifier(required): string
Unique identifier of the organization name
The request body defines the details of the API request.
Root Schema : requestPayload
Type:
object
Request payload
Show Source
-
applicationName:
string
Title:
Application Name
Maximum Length:128
The name of the application which is accessing the API.First Available Version: 20.1.10
-
busDt(required):
string(date)
Title:
Business Date
The business date associated with the cash management detail -
include:
string
Title:
Include
Maximum Length:2000
List of objects to include in response -
locRef(required):
string
Title:
Location Reference
Maximum Length:99
The location reference, this may be a store number or name depending on the organization -
searchCriteria:
string
Title:
Search Criteria
Maximum Length:2000
Search criteria to filter results based on field value
Response
Supported Media Types
- application/json
200 Response
OK
Root Schema : miQuarterHourTotals
Type:
object
The response body contains information about the menu item quarter hour totals for a specified location and business date.
Show Source
-
busDt(required):
string(date)
Title:
Business Date
Business Date -
locRef(required):
string
Title:
Location Reference
Maximum Length:99
The location reference, this may be a store number or name depending on the organization -
revenueCenters(required):
array revenueCenters
An array of Menu Item Quarter Hour Totals by Revenue Centers
Nested Schema : revenueCenters
Type:
array
An array of Menu Item Quarter Hour Totals by Revenue Centers
Show Source
-
Array of:
object miQuarterHourTotalsByRVC
The response body contains quarter hour totals by menu item of a revenue center for the specified location and business date.
Nested Schema : miQuarterHourTotalsByRVC
Type:
object
The response body contains quarter hour totals by menu item of a revenue center for the specified location and business date.
Show Source
-
quarterHours(required):
array quarterHours
Array containing all quarter hours with service charge totals. The number of the 15 minute increment. Number between 1-96. This attribute will not be returned in the response if value is null
-
rvcNum(required):
integer
Title:
Revenue Center Number
Maximum Length:10
Revenue Center number. This attribute will not be returned in the response if menuItems is null
Nested Schema : quarterHours
Type:
array
Array containing all quarter hours with service charge totals. The number of the 15 minute increment. Number between 1-96. This attribute will not be returned in the response if value is null
Show Source
-
Array of:
object miQuarterHourTotalsArray
The response body contains quarter hour totals by menu item of a revenue center for the specified location and business date.
Nested Schema : miQuarterHourTotalsArray
Type:
object
The response body contains quarter hour totals by menu item of a revenue center for the specified location and business date.
Show Source
-
busHrNum(required):
number
Title:
The number of the business hour
The number of the business hour. Number between 1- 240. -
dpName(required):
string
Title:
The name of the day part for this quarter hour
The name of the day part for this quarter hour. - menuItems(required): array menuItems
-
qtrHrNum(required):
number
Title:
The number of the 15 minute increment
The number of the 15 minute increment. Number between 1-96.
400 Response
Bad Request
Root Schema : exceptionDetailType
Type:
object
Error details
Show Source
-
detail:
string
Title:
Error Description
The description of the error -
o:errorCode(required):
integer
Title:
Oracle Error Code
Oracle error code -
status:
integer
Title:
Status
HTTP Response Code -
title(required):
string
Title:
Title
High level description of the error -
type(required):
string
Title:
Type
The description of the type of HTTP error
401 Response
Unauthorized
Root Schema : exceptionDetailType
Type:
object
Error details
Show Source
-
detail:
string
Title:
Error Description
The description of the error -
o:errorCode(required):
integer
Title:
Oracle Error Code
Oracle error code -
status:
integer
Title:
Status
HTTP Response Code -
title(required):
string
Title:
Title
High level description of the error -
type(required):
string
Title:
Type
The description of the type of HTTP error
403 Response
Service Unavailable
Root Schema : exceptionDetailType
Type:
object
Error details
Show Source
-
detail:
string
Title:
Error Description
The description of the error -
o:errorCode(required):
integer
Title:
Oracle Error Code
Oracle error code -
status:
integer
Title:
Status
HTTP Response Code -
title(required):
string
Title:
Title
High level description of the error -
type(required):
string
Title:
Type
The description of the type of HTTP error
404 Response
Resource Not Found
Root Schema : exceptionDetailType
Type:
object
Error details
Show Source
-
detail:
string
Title:
Error Description
The description of the error -
o:errorCode(required):
integer
Title:
Oracle Error Code
Oracle error code -
status:
integer
Title:
Status
HTTP Response Code -
title(required):
string
Title:
Title
High level description of the error -
type(required):
string
Title:
Type
The description of the type of HTTP error
Default Response
Unexpected Error
Root Schema : exceptionDetailType
Type:
object
Error details
Show Source
-
detail:
string
Title:
Error Description
The description of the error -
o:errorCode(required):
integer
Title:
Oracle Error Code
Oracle error code -
status:
integer
Title:
Status
HTTP Response Code -
title(required):
string
Title:
Title
High level description of the error -
type(required):
string
Title:
Type
The description of the type of HTTP error
Examples
The following example shows how to view all the menu item quarter hour totals for a specified location & business date by submitting a POST request on the REST resource using cURL. For more information, see Use cURL
curl -i -X POST -H "Authorization: Bearer" -H "Content-Type:application/json" -d {"locRef":"1234","busDt":"2020-10-20"} https://baseurl/bi/v1/orgidentifier/getMenuItemQuarterHourTotals
Example of Response Header
The following shows an example of the response header.
HTTP/1.1 200 OK Date: Tue, 20 Oct 2020 21:24:33 GMT Transfer-Encoding: chunked Content-Type: application/json
Example of Response Body
The following example shows the contents of the response body in JSON format:
{ "locRef": "1234", "busDt: "2020-07-20", "revenueCenters":[{ "rvcNum": 1372, "quarterHours": [{ "qtrHrNum": 67, "busHrNum": 16, "dpName": "All Day", "menuItems":[{ "miNum": 12345, "prcLvlNum": 1, "ocNum": 2, "otNum": 12345, "slsTtl": 1234.56, "slsCnt": 123, "rtnCnt": 123, "dscTtl": 1234.56, "vol": 1234.56, "prepCost": 1234.56, "vatTtl": 1234.567890, "dscVatTtl": 1234.567890, "inclTaxTtl": 14.45, "forgivenInclTaxTtl": 12.34 }] }] }] }