Skip to main content

Upload file

POST 

/api/v1/invoice-bulk-upload

To upload bulk or scheduled invoices instantly and deliver them via SMS

📥 Download sample bulk invoice file: Click here to download

📥 Download sample scheduled invoice file: Click here to download

🔋 Sample Request Payload

  {
"merchantCode": "842217", // Pass merchant code
"isScheduled": "false", // "false" for bulk or "true" for scheduled
"fileType": "csv", // Eg: csv or xlsx
"invoices": base64value // Pass base 64 file format value
}

🎯 Note: Payload must be encrypted before being sent to the server. To access the response data, decrypt it upon receiving the response from the server

⚡️ Payload details

Field NameDescriptionRequired
merchantCodePass the merchant code✅ Yes
isScheduledPass the invoice type "false" if it is bulk and Pass the invoice type "true" if it is scheduled ✅ Yes
fileTypePass the invoice type "csv" or "xlsx" ✅ Yes
invoicesPass the file data in base 64 format ✅ Yes

Request

Responses

Bulk invoice file uploaded successfully. Decrypt the server response to view the result.