Skip to main content

Transmit Invoice

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

Description: This allows taxpayers/users to transmit an e-invoice from their domain/ERP as a seller to the buyer’s ERP/accounting system. It initiates the electronic invoice exchange process in compliance with FIRS specifications by routing between both seller and buyer’s APP (Access Point Provider). It sends a webhook notification to all involved parties about the invoice transmission. A webhook is required to receive notifications which contains the IRN and validation details.

Request Parameters

ParameterTypeDescriptionRequired?
irnstringInvoice Reference NumberYes
tinstringTax Identification Number (TIN) is a unique number issued by FIRS (or JTB/SBIR) for filing tax returns and other tax-related transactions.Yes

Request Parameters

POST {base_url}/api/v1/app/invoice/transmit/
curl `{base_url}/api/v1/app/invoice/transmit/`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
-H "Content-Type: application/json"
-d '{
"irn": "INV285-47AT78FN-20250417",
"tin": "12345678-0001"
}
'