Skip to main content
GET
/
tabs
/
reports
/
inventory-movements
Movimientos de inventario
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/inventory-movements \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "ingredients": [
      {
        "ingredientId": "<string>",
        "ingredientName": "<string>",
        "unitOfMeasurement": "<string>",
        "initialQuantity": 123,
        "finalQuantity": 123,
        "costPerUnit": 123,
        "finalQuantityCost": 123,
        "movementsTypesTotals": [
          {
            "movementType": "<string>",
            "count": 123,
            "totalIn": 123,
            "totalOut": 123,
            "totalNet": 123
          }
        ],
        "expectedVSFinal": {
          "expectedInQuantity": 123,
          "expectedQuantity": 123,
          "expectedUsageQuantity": 123,
          "finalQuantity": 123,
          "finalUsageQuantity": 123,
          "diffQuantity": 123,
          "expectedCost": 123,
          "expectedUsageCost": 123,
          "finalCost": 123,
          "finalUsageCost": 123,
          "diffCost": 123
        },
        "ingredientCategoryId": "<string>",
        "ingredientCategoryName": "<string>",
        "fromDate": "2023-11-07T05:31:56Z"
      }
    ],
    "total": {
      "finalQuantityCost": 123,
      "expectedVSFinal": {
        "expectedCost": 123,
        "expectedUsageCost": 123,
        "finalCost": 123,
        "finalUsageCost": 123,
        "diffCost": 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

storeId
string
required
fromDate
string<date-time>
required
Example:

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

toDate
string<date-time>
required
Example:

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

stockRoomId
string
required
considerAudits
boolean

Response

The OpenAPI spec

success
boolean
Example:

true

data
object