Skip to main content

Get Service Codes

base_url: https://firseinvoice.etranzactng.com/

Description: This endpoint returns a list of service codes and their corresponding values.

Query ParameterTypeDescription
0111IntegerGrowing of cereals (except rice), leguminous crops and oil seeds
0112IntegerGrowing of rice
0113IntegerGrowing of vegetables and melons, roots and tubers
0114IntegerGrowing of sugar cane
0115IntegerGrowing of tobacco
0116IntegerGrowing of fibre crops
0119IntegerGrowing of other non-perennial crops
0121IntegerGrowing of grapes
0122IntegerGrowing of tropical and subtropical fruits
0123IntegerGrowing of citrus fruits
0124IntegerGrowing of pome fruits and stone fruits

Sample Request

GET {base_url}/api/v1/resource/service-codes
curl `{base_url}/api/v1/resource/service-codes`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
'

Sample Response

POST {base_url}/api/v1/resource/service-codes
{
"status": 200,
"message": "Tax categories fetched successfully",
"data": [
{
"description": ”Growing of cereals (exceptrice) leguminous crops and oil seeds",
"code": 0111,
},
{
"description": ”Growing of sugar cane",
"code": 0114,
},
{
"description": ”Growingoffibrecrops",
"code":0116
}
],
"execTime": 1.27868,
"error": ""
}