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

Verify TIN

GET
/efris/verify-tin/{tinNumber}

Verify TIN Endpoint#

This endpoint is used to verify a Tax Identification Number (TIN) for a given individual or entity. It allows users to confirm the validity of a TIN, which is essential for tax-related processes.

Request Format#

Method: GET
URL: {{baseUrl}}/efris/verify-tin/:tinNumber
Path Parameter:
tinNumber (string): The TIN that needs to be verified. This parameter should be included in the URL path.

Response Structure#

The response will contain the verification result of the provided TIN. The structure of the response will typically include:
status (string): Indicates the success or failure of the verification process.
message (string): A descriptive message providing additional information about the verification result.
data (object): Contains relevant details about the TIN if it is valid, such as:
valid (boolean): Indicates whether the TIN is valid.
entityName (string): The name of the entity associated with the TIN, if applicable.
Ensure that the TIN provided is formatted correctly to receive an accurate verification response.

Request

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

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://auth.efris.kakasa.xyz/api/v1/efris/verify-tin/tin' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Previous
Update Stock List
Next
Fiscalise
Built with