Kumusoft Solutions
EFRIS API
Auth Service
EFRIS API
Auth Service
  1. EFRIS API
  • Get Current Taxpayer Details
    GET
  • Update AES Key
    POST
  • Get Efris Stock Items
    GET
  • Update Stock List
    POST
  • Verify TIN
    GET
  • Fiscalise
    POST
  • Preview Invoice
    POST
  • Issue CreditNote
    POST
  • Register EFRIS Product
    POST
  • Get Units Of Measure
    GET
  • Increase Stock
    POST
  • EFRIS Invoice Report
    POST
  • Invoice Details
    GET
  • Get Saved Items List
    GET
  • Get Master Data
    GET
  • Reduce stock
    POST
  1. EFRIS API

Get Saved Items List

GET
/efris/local/stock-items

Overview#

GET {{baseUrl}}/efris/local/stock-items retrieves a list of stock items from the local inventory database. This endpoint provides detailed information about each stock item, including codes, names, quantities, pricing, tax flags, and metadata. It is intended for applications that need to display or manage inventory data.

Authentication#

Requires authentication. Pass a valid token using the {{token}} variable (typically as a Bearer token in the Authorization header).

Request Details#

Method: GET
URL: {{baseUrl}}/efris/local/stock-items
Request Body: None
Query Parameters: None by default, unless otherwise specified by the API documentation.

Response Schema#

The response is a JSON object with the following structure:
{
    "success": true,
    "msg": "SUCCESS!",
    "items": [
        {
            "exciseRule": "2",
            "_id": "68ee0bbfebe97e2ae70e84e3",
            "goodsCode": "DFOO1",
            "tin": "1007730594",
            "__v": 0,
            "commodityCategoryCode": 15101505,
            "commodityCategoryName": "Diesel fuel",
            "createDate": "1760430886000",
            "currency": 101,
            "dateFormat": "dd/MM/yyyy",
            "exclusion": 1,
            "goodsName": "Diesel Fuel",
            "haveExciseTax": 102,
            "havePieceUnit": 102,
            "id": "104261310283940036",
            "isExempt": 102,
            "isZeroRate": 102,
            "measureUnit": "102",
            "nowTime": "2025-11-18T11:47:22.000Z",
            "pageIndex": 0,
            "pageNo": 0,
            "pageSize": 0,
            "source": 102,
            "statusCode": 101,
            "stock": 50048,
            "stockPrewarning": 100,
            "taxRate": "0.18",
            "timeFormat": "dd/MM/yyyy HH24:mi:ss",
            "unitPrice": 5500
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://auth.efris.kakasa.xyz/api/v1/efris/local/stock-items' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Previous
Invoice Details
Next
Get Master Data
Built with