Skip to main content
GET
/
tabs
/
reports
/
accounting-movements
Reporte de movimientos contables
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/accounting-movements \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "data": {
      "movementTypes": [
        {
          "name": "<string>",
          "total": 123,
          "share": 123
        }
      ],
      "movementCategories": [
        {
          "name": "<string>",
          "total": 123,
          "share": 123
        }
      ],
      "stores": [
        {
          "name": "<string>",
          "total": 123,
          "share": 123
        }
      ],
      "ingredientCategories": [
        {
          "name": "<string>",
          "total": 123,
          "share": 123
        }
      ]
    },
    "total": {
      "movementsTotal": {
        "total": 123,
        "variation": 123
      },
      "movementsCount": {
        "total": 123,
        "variation": 123
      },
      "voidedTotal": {
        "total": 123,
        "variation": 123
      },
      "paidTotal": {
        "total": 123,
        "variation": 123
      },
      "pendingTotal": {
        "total": 123,
        "variation": 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"

filter
string
movementTypes
string
statuses
string[]
accountingMovementCategoryIds
string[]

Response

The OpenAPI spec

success
boolean
Example:

true

data
object