Get Service Codes
base_url: https://firseinvoice.etranzactng.com/
Description: This endpoint returns a list of service codes and their corresponding values.
| Query Parameter | Type | Description |
|---|---|---|
| 0111 | Integer | Growing of cereals (except rice), leguminous crops and oil seeds |
| 0112 | Integer | Growing of rice |
| 0113 | Integer | Growing of vegetables and melons, roots and tubers |
| 0114 | Integer | Growing of sugar cane |
| 0115 | Integer | Growing of tobacco |
| 0116 | Integer | Growing of fibre crops |
| 0119 | Integer | Growing of other non-perennial crops |
| 0121 | Integer | Growing of grapes |
| 0122 | Integer | Growing of tropical and subtropical fruits |
| 0123 | Integer | Growing of citrus fruits |
| 0124 | Integer | Growing 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": ""
}