Skip to main content
GET
/
tabs
/
reports
/
shift-details
Detalle de turno
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/shift-details \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "tabs": [
      {
        "_id": "<string>",
        "code": "<string>",
        "totalPrice": 123,
        "discountsAmount": 123,
        "tipAmount": 123,
        "paymentStatus": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "closedAt": "2023-11-07T05:31:56Z",
        "invoicedAmount": 123,
        "paidAmount": 123,
        "invoiceCount": 123,
        "paymentCount": 123,
        "isDeliveryBilledExternally": true,
        "deliveryFee": 123,
        "deliveryType": "<string>"
      }
    ],
    "payments": [
      {
        "_id": "<string>",
        "tabId": "<string>",
        "tabCode": "<string>",
        "amount": 123,
        "tipAmount": 123,
        "paymentMethodName": "<string>",
        "remainingBalance": 123,
        "voidedAt": "2023-11-07T05:31:56Z",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "invoices": [
      {
        "_id": "<string>",
        "tabId": "<string>",
        "tabCode": "<string>",
        "totalAmount": 123,
        "status": "<string>",
        "folio": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

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

shiftId
string
required

Response

The OpenAPI spec

success
boolean
Example:

true

data
object