Skip to main content

Get Kardex Report

Retrieves the Kardex report. This endpoint represents the Cognos Kardex report, providing detailed inventory movement tracking.

Authentication

This endpoint requires authentication via Basic Authentication.

Query Parameters

Response

Example Request

cURL
curl -X GET "https://api.example.com/api/accounting/kardex?TypeFilter=3&Page=1&PagSize=50" \
  -H "Authorization: Basic <base64-credentials>" \
  -H "Accept: application/json"
Get current month kardex
curl -X GET "https://api.example.com/api/accounting/kardex?TypeFilter=3&Page=1&PagSize=100" \
  -H "Authorization: Basic <base64-credentials>"
Get specific month and year
curl -X GET "https://api.example.com/api/accounting/kardex?TypeFilter=5&Month=12&Year=2024&Page=1&PagSize=50" \
  -H "Authorization: Basic <base64-credentials>"
Get all records
curl -X GET "https://api.example.com/api/accounting/kardex?TypeFilter=7&Page=1&PagSize=500" \
  -H "Authorization: Basic <base64-credentials>"

Example Response

Caching

Status Codes

Status CodeDescription
200Successful response with Kardex report data
401Unauthorized - Invalid or missing authentication
500Internal Server Error

About Kardex

The Kardex report provides a detailed movement history for inventory items, tracking:
  • Incoming quantities (purchases, transfers in)
  • Outgoing quantities (issues, transfers out)
  • Running balance
  • Unit and total costs
  • Movement dates and types
This report is essential for inventory control, cost accounting, and audit trails.

Build docs developers (and LLMs) love