Skip to main content
GET
/
tabs
/
reports
/
ingredients-consume
Consumo de ingredientes
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/ingredients-consume \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "ingredients": [
      {
        "ingredientId": "<string>",
        "ingredientName": "<string>",
        "unitOfMeasurement": "<string>",
        "quantity": 123,
        "totalAmount": 123,
        "storesInfo": [
          {
            "storeId": "<string>",
            "storeName": "<string>",
            "totalAmount": 123,
            "quantity": 123,
            "count": 123
          }
        ]
      }
    ],
    "stores": [
      {
        "storeId": "<string>",
        "storeName": "<string>",
        "totalSales": 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

storeIds
string[]
fromDate
string<date-time>
Example:

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

toDate
string<date-time>
Example:

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

ingredientCategoryIds
string[]
movementTypes
string

Response

The OpenAPI spec

success
boolean
Example:

true

data
object