Skip to main content
GET
/
tabs
/
reports
/
kds-turnover-by-hour
Tiempo KDS por hora
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/kds-turnover-by-hour \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "storeId": "<string>",
    "storeName": "<string>",
    "locationResults": [
      {
        "locationId": "<string>",
        "locationName": "<string>",
        "storeName": "<string>",
        "days": [
          {
            "date": "2023-11-07T05:31:56Z",
            "hours": [
              {
                "totalPrice": 123,
                "count": 123,
                "label": "<string>",
                "avgCompletionTimeSeconds": 123,
                "minCompletionTimeSeconds": 123,
                "maxCompletionTimeSeconds": 123,
                "completionTimesDistribution": [
                  123
                ],
                "tabs": [
                  {
                    "tabId": "<string>",
                    "code": "<string>",
                    "totalPrice": 123,
                    "itemsCount": 123,
                    "description": "<string>",
                    "avgCompletionTimeSeconds": 123,
                    "kdsStartedAt": "2023-11-07T05:31:56Z",
                    "kdsCompletedAt": "2023-11-07T05:31:56Z"
                  }
                ]
              }
            ],
            "totalPrice": 123,
            "count": 123
          }
        ],
        "hourAverages": [
          {
            "totalPrice": 123,
            "count": 123,
            "label": "<string>",
            "avgCompletionTimeSeconds": 123,
            "minCompletionTimeSeconds": 123,
            "maxCompletionTimeSeconds": 123,
            "completionTimesDistribution": [
              123
            ],
            "tabs": [
              {
                "tabId": "<string>",
                "code": "<string>",
                "totalPrice": 123,
                "itemsCount": 123,
                "description": "<string>",
                "avgCompletionTimeSeconds": 123,
                "kdsStartedAt": "2023-11-07T05:31:56Z",
                "kdsCompletedAt": "2023-11-07T05:31:56Z"
              }
            ]
          }
        ]
      }
    ],
    "storeHourAverages": [
      {
        "totalPrice": 123,
        "count": 123,
        "label": "<string>",
        "avgCompletionTimeSeconds": 123,
        "minCompletionTimeSeconds": 123,
        "maxCompletionTimeSeconds": 123,
        "completionTimesDistribution": [
          123
        ],
        "tabs": [
          {
            "tabId": "<string>",
            "code": "<string>",
            "totalPrice": 123,
            "itemsCount": 123,
            "description": "<string>",
            "avgCompletionTimeSeconds": 123,
            "kdsStartedAt": "2023-11-07T05:31:56Z",
            "kdsCompletedAt": "2023-11-07T05:31:56Z"
          }
        ]
      }
    ],
    "storeDays": [
      {
        "date": "2023-11-07T05:31:56Z",
        "hours": [
          {
            "totalPrice": 123,
            "count": 123,
            "label": "<string>",
            "avgCompletionTimeSeconds": 123,
            "minCompletionTimeSeconds": 123,
            "maxCompletionTimeSeconds": 123,
            "completionTimesDistribution": [
              123
            ],
            "tabs": [
              {
                "tabId": "<string>",
                "code": "<string>",
                "totalPrice": 123,
                "itemsCount": 123,
                "description": "<string>",
                "avgCompletionTimeSeconds": 123,
                "kdsStartedAt": "2023-11-07T05:31:56Z",
                "kdsCompletedAt": "2023-11-07T05:31:56Z"
              }
            ]
          }
        ],
        "totalPrice": 123,
        "count": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getjusto.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

fromDate
string<date-time>
required
Example:

"2020-01-01T00:00:00.000Z"

toDate
string<date-time>
required
Example:

"2020-01-01T00:00:00.000Z"

storesIds
string[]

Response

The OpenAPI spec

success
boolean
Example:

true

data
object