Skip to main content

Get Invoice type

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

Description: This endpoint returns a list of invoice types and their corresponding values.

Query ParameterTypeDescription
380stringCredit Note
381stringCommercial Invoice
384stringDebit Note
385stringSelf Billed Invoice
386stringFactored Invoice
388stringStatement of Account
388stringStatement of Account
389stringPurchase Order
390stringProforma Invoice
392stringConsignment Invoice
393stringSelf-billed Credit Note
394stringSelf-billed Invoice
395stringCredit Note Request
396stringInvoice Request
397stringFinal Settlement
399stringBill of Lading
400stringWaybill
402stringShipping Instructions
404stringCertificate of Origin
406stringCustoms Declaration
408stringPacking 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": ""
}