Report E-Invoice
curl --request POST \
--url https://test-api.pasca.co/api/v1/einvoice/report-fiscalization \
--header 'API-KEY: <api-key>' \
--header 'API-SECRET: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_tin": "29039239-0001",
"base_amount": "1000",
"beneficiary_tin": "29334238-0001",
"currency": "NGN",
"item_description": "Items",
"irn": "{{IRN}}",
"other_taxes": "5000",
"total_amount": "112500",
"transaction_date": "2024-11-18",
"vat_calculated": "7500",
"vat_rate": "7.5",
"vat_status": "STANDARD_VAT"
}
'import requests
url = "https://test-api.pasca.co/api/v1/einvoice/report-fiscalization"
payload = {
"agent_tin": "29039239-0001",
"base_amount": "1000",
"beneficiary_tin": "29334238-0001",
"currency": "NGN",
"item_description": "Items",
"irn": "{{IRN}}",
"other_taxes": "5000",
"total_amount": "112500",
"transaction_date": "2024-11-18",
"vat_calculated": "7500",
"vat_rate": "7.5",
"vat_status": "STANDARD_VAT"
}
headers = {
"API-KEY": "<api-key>",
"API-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-KEY': '<api-key>',
'API-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
agent_tin: '29039239-0001',
base_amount: '1000',
beneficiary_tin: '29334238-0001',
currency: 'NGN',
item_description: 'Items',
irn: '{{IRN}}',
other_taxes: '5000',
total_amount: '112500',
transaction_date: '2024-11-18',
vat_calculated: '7500',
vat_rate: '7.5',
vat_status: 'STANDARD_VAT'
})
};
fetch('https://test-api.pasca.co/api/v1/einvoice/report-fiscalization', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": false,
"code": 400,
"message": "Failed to validate invoice",
"data": null,
"error": {
"id": "5c4c008e-8f1e-4034-a96b-8b352c143da5",
"handler": "invoice_actions",
"details": "this business does not exist",
"public_message": "validation failed"
},
"timestamp": "2025-12-23T14:54:12.477393Z"
}{
"status": false,
"code": 401,
"message": "Unauthorized",
"data": null,
"error": {
"details": "invalid or missing API credentials"
}
}Invoices
Report E-Invoice
POST
/
api
/
v1
/
einvoice
/
report-fiscalization
Report E-Invoice
curl --request POST \
--url https://test-api.pasca.co/api/v1/einvoice/report-fiscalization \
--header 'API-KEY: <api-key>' \
--header 'API-SECRET: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_tin": "29039239-0001",
"base_amount": "1000",
"beneficiary_tin": "29334238-0001",
"currency": "NGN",
"item_description": "Items",
"irn": "{{IRN}}",
"other_taxes": "5000",
"total_amount": "112500",
"transaction_date": "2024-11-18",
"vat_calculated": "7500",
"vat_rate": "7.5",
"vat_status": "STANDARD_VAT"
}
'import requests
url = "https://test-api.pasca.co/api/v1/einvoice/report-fiscalization"
payload = {
"agent_tin": "29039239-0001",
"base_amount": "1000",
"beneficiary_tin": "29334238-0001",
"currency": "NGN",
"item_description": "Items",
"irn": "{{IRN}}",
"other_taxes": "5000",
"total_amount": "112500",
"transaction_date": "2024-11-18",
"vat_calculated": "7500",
"vat_rate": "7.5",
"vat_status": "STANDARD_VAT"
}
headers = {
"API-KEY": "<api-key>",
"API-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-KEY': '<api-key>',
'API-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
agent_tin: '29039239-0001',
base_amount: '1000',
beneficiary_tin: '29334238-0001',
currency: 'NGN',
item_description: 'Items',
irn: '{{IRN}}',
other_taxes: '5000',
total_amount: '112500',
transaction_date: '2024-11-18',
vat_calculated: '7500',
vat_rate: '7.5',
vat_status: 'STANDARD_VAT'
})
};
fetch('https://test-api.pasca.co/api/v1/einvoice/report-fiscalization', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": false,
"code": 400,
"message": "Failed to validate invoice",
"data": null,
"error": {
"id": "5c4c008e-8f1e-4034-a96b-8b352c143da5",
"handler": "invoice_actions",
"details": "this business does not exist",
"public_message": "validation failed"
},
"timestamp": "2025-12-23T14:54:12.477393Z"
}{
"status": false,
"code": 401,
"message": "Unauthorized",
"data": null,
"error": {
"details": "invalid or missing API credentials"
}
}⌘I