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

Update Stock List

POST
/efris/update-stock-items

Update Stock List#

Synchronizes stock items between the EFRIS portal and the local inventory database.

Endpoint#

POST {{baseUrl}}/efris/update-stock-items

Overview#

This endpoint triggers a synchronization process to align EFRIS portal stock items with the local inventory records. It is typically used to ensure consistency between external (EFRIS) and internal (local) stock data.

Authentication#

Requires authentication via the {{token}} variable (typically provided as a Bearer token in the request headers).

Request Body#

No request body is required.
The current implementation expects an empty body and ignores any payload sent.

Expected Response#

Status: 200 OK
Body:
{  
"success": true,  
}
The response contains a single boolean field success indicating the outcome of the synchronization operation.

Operational Notes#

Rate Limiting: Subject to standard API rate limits. Excessive requests may be throttled.
Error Handling:
Common errors include authentication failures (401/403), rate limiting (429), or server errors (5xx).

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 POST 'https://auth.efris.kakasa.xyz/api/v1/efris/update-stock-items' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Previous
Get Efris Stock Items
Next
Verify TIN
Built with