Skip to main content
GET
/
tabs
/
reports
/
daily-ingredients-inventory
Inventario diario de ingredientes
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/daily-ingredients-inventory \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "ingredients": [
      {
        "ingredientId": "<string>",
        "ingredientName": "<string>",
        "unitOfMeasurement": "<string>",
        "days": [
          {
            "date": "2023-11-07T05:31:56Z",
            "totalUsed": 123,
            "totalSold": 123,
            "totalPurchased": 123,
            "totalTransferred": 123,
            "totalAudited": 123,
            "totalProduced": 123,
            "totalWasted": 123,
            "totalCost": 123,
            "totalVoided": 123,
            "initialInventory": 123,
            "finalInventory": 123,
            "totalConsumed": 123,
            "totalUsedByRecipe": 123,
            "totalStockRoomTransfer": 123,
            "totalOther": 123,
            "totalInventorySale": 123,
            "unitCost": {
              "startOfPeriod": 123,
              "endOfPeriod": 123,
              "avgOfPeriod": 123
            }
          }
        ],
        "totals": {
          "totalUsed": 123,
          "totalSold": 123,
          "totalPurchased": 123,
          "totalTransferred": 123,
          "totalAudited": 123,
          "totalProduced": 123,
          "totalWasted": 123,
          "totalVoided": 123,
          "totalCost": 123,
          "initialInventory": 123,
          "finalInventory": 123,
          "totalConsumed": 123,
          "totalUsedByRecipe": 123,
          "totalStockRoomTransfer": 123,
          "totalOther": 123,
          "totalInventorySale": 123
        }
      }
    ],
    "days": [
      {
        "date": "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

fromDate
string<date-time>
required
Example:

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

toDate
string<date-time>
required
Example:

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

storeIds
string[]
stockRoomId
string
ingredientCategoryIds
string[]

Response

The OpenAPI spec

success
boolean
Example:

true

data
object