Skip to main content
GET
/
tabs
/
reports
/
accounting-movements-by-provider
Movimientos contables por proveedor
curl --request GET \
  --url https://api.service.getjusto.com/v3/tabs/reports/accounting-movements-by-provider \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "stores": [
      {
        "storeId": "<string>",
        "storeName": "<string>"
      }
    ],
    "data": [
      {
        "providerId": "<string>",
        "providerName": "<string>",
        "totalAmount": 123,
        "taxAmount": 123,
        "netAmount": 123,
        "count": 123,
        "storesInfo": [
          {
            "storeId": "<string>",
            "storeName": "<string>",
            "totalAmount": 123,
            "taxAmount": 123,
            "netAmount": 123,
            "count": 123,
            "accountingMovements": [
              {
                "_id": "<string>",
                "totalAmount": 123,
                "netAmount": 123,
                "taxAmount": 123,
                "createdAt": "2023-11-07T05:31:56Z",
                "paidAt": "2023-11-07T05:31:56Z",
                "providerId": "<string>",
                "invoiceId": "<string>",
                "dueDate": "2023-11-07T05:31:56Z",
                "issueDate": "2023-11-07T05:31:56Z",
                "voidedAt": "2023-11-07T05:31:56Z"
              }
            ]
          }
        ]
      }
    ],
    "total": {
      "totalAmount": 123,
      "taxAmount": 123,
      "netAmount": 123,
      "count": 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"

movementTypes
string
accountingMovementCategoryIds
string[]

Response

The OpenAPI spec

success
boolean
Example:

true

data
object