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.{{token}} variable (typically as a Bearer token in the Authorization header).{{baseUrl}}/efris/local/stock-items{
"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
}
]
}
curl --location --request GET 'https://auth.efris.kakasa.xyz/api/v1/efris/local/stock-items' \
--header 'Authorization: Bearer <token>'{}