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 Units Of Measure

GET
/efris/units-of-measure

Get Units of Measure#

This endpoint retrieves a list of units of measure from the system.
Method: GET
Endpoint: {{baseUrl}}/efris/units-of-measure

Authentication#

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

Request#

This is a GET request, and it does not require a request body.

Response#

The response will be in a JSON format containing an array of units of measure. Each unit of measure will include relevant details such as the name, value and an optional description.
[
    {
        "name": "Per Shift",
        "value": "216"
    },
    {
        "description": "Used as a measure unit for Cattle",
        "name": "Head",
        "value": "215"
    },
}

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/units-of-measure' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Previous
Register EFRIS Product
Next
Increase Stock
Built with