Get Products Codes
base_url: https://firseinvoice.etranzactng.com/
Description: This endpoint returns a list of product codes and their corresponding values.
| Query Parameter | Type | Description |
|---|---|---|
| 0101.29 | float | Horses; live, other than pure-bred breeding animals |
| 0101.30 | float | Asses; live |
| 0101.90 | float | Mules and hinnies; live |
| 0102.21 | float | Cattle; live, pure-bred breeding animals |
| 0102.29 | float | Cattle; live, other than pure-bred breeding animals |
| 0102.31 | float | Buffalo; live, pure-bred breeding animals |
| 0102.39 | float | Buffalo; live, other than pure-bred breeding animals |
| 0102.90 | float | Bovine animals; live, other than cattle and buffalo |
| 0103.10 | float | Swine; live, pure-bred breeding animals |
| 0103.91 | float | Swine; live, other than pure-bred breeding animals, weighing less than 50kg |
| 0103.92 | float | Swine; live, other than pure-bred breeding animals, weighing 50kg or more |
| 0104.10 | float | Sheep; live |
| 0104.20 | float | Goats; live |
| 0105.11 | float | Poultry; live, fowls of the species Gallus domesticus, weighing not more than 185g |
Sample Request
GET {base_url}/api/v1/resource/product-codes
curl `{base_url}/api/v1/resource/product-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/product-codes
{
"status": 200,
"message": "Product codes fetched successfully",
"data": [
{
"hscode": 0101.21,
"description": "Horses;live,pure-bredbreedinganimals"
},
{
"hscode": 0101.29,
"description": "Horses;live,otherthanpure-bredbreedinganimals"
},
{
"hscode": 0101.30,
"description": "Asses;live"
}
],
"execTime": 1.27868,
"error": ""
}