Get Invoice type
base_url: https://firseinvoice.etranzactng.com/
Description: This endpoint returns a list of invoice types and their corresponding values.
| Query Parameter | Type | Description |
|---|---|---|
| 380 | string | Credit Note |
| 381 | string | Commercial Invoice |
| 384 | string | Debit Note |
| 385 | string | Self Billed Invoice |
| 386 | string | Factored Invoice |
| 388 | string | Statement of Account |
| 388 | string | Statement of Account |
| 389 | string | Purchase Order |
| 390 | string | Proforma Invoice |
| 392 | string | Consignment Invoice |
| 393 | string | Self-billed Credit Note |
| 394 | string | Self-billed Invoice |
| 395 | string | Credit Note Request |
| 396 | string | Invoice Request |
| 397 | string | Final Settlement |
| 399 | string | Bill of Lading |
| 400 | string | Waybill |
| 402 | string | Shipping Instructions |
| 404 | string | Certificate of Origin |
| 406 | string | Customs Declaration |
| 408 | string | Packing List |
Sample Request
GET {base_url}/api/v1/resource/invoice-types
curl `{base_url}/api/v1/resource/invoice-types`
-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/invoice-types
{
"status": 200,
"message": "Invoice type fetched successfully",
"data": [
{
"code": 380,
"value": "CreditNote"
},
{
"code": 381,
"value": "CommercialInvoice" },
{
"code": 384,
"value": "DebitNote"
}
],
"execTime": 1.27868,
"error": ""
}