curl --location --request POST 'https://auth.efris.kakasa.xyz/api/v1/efris/fiscalise' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"sellerDetails": {
"referenceNo": "b005"
},
"basicInformation": {
"currency": "UGX",
"invoiceType": 1,
"invoiceKind": 1,
"invoiceIndustryCode": "101"
},
"buyerDetails": {
"buyerBusinessName": "Buyer Name",
"buyerLegalName": "Buyer Legal Name",
"buyerType": "1",
"buyerTin": ""
},
"itemsBought": [
{
"itemCode": "A001",
"quantity": 1,
"unitPrice": 45600,
"total": 45600,
"taxForm": "101",
"taxRule": "STANDARD",
"discountFlag": 1,
"discountTotal": 600,
"exciseFlag": "2",
"exciseRate": "",
"exciseUnit": "",
"exciseTax": "",
"exciseCurrency": "UGX"
}
]
}
}'