Nomupay provides the following set of reports, and this section will describe the report delivery methods:
| Product Offer | Report name | Cadence | Format | Delivery method |
| Informational Cash Flow | Daily | CSV |
|
|
| Funding Summary Report | Daily (after funding) |
|
||
| MDR Funding Report | Daily (after funding) | CSV |
|
|
| IC++ Funding Report | Daily (after funding) | CSV |
|
|
| Transaction Activity Report | Daily, weekly, or monthly | CSV | ||
| Payment Status Report | Daily, weekly, or monthly | CSV |
For the reports where it is indicated as available in the above table, you can opt to receive your reports via email. The applicable email address will be defined during your onboarding.
Secure File Transfer Protocol
For the reports where it is indicated as available in the above table, you can opt to receive your report via Secure File Transfer Protocol (SFTP). To set up your reporting folder directory, all that is required is as follows:
- For merchants, platforms and marketplaces: your Account ID / for reseller partners: your Partner ID (these IDs are assigned during onboarding),
- An SFTP client (Filezilla, for example),
- Your SSH public/private keys, (Not sure how to generate your SSH public/private keys? The team over at Acquia has provided some easy-to-use instructions here), and
- Your public IP address (Nomupay will need to whitelist this as part of the setup process)
Once you've generated your SSH keys, please take a moment to send the public key and your public IP address to your Nomupay representative. Our team will use this key to create your SFTP connection. Once your connection has been established (we will confirm this with you via email) you will be able to log in using your SFTP client using your Account ID (ex. EID-1234567) if you are an enterprise or marketplace, or, if you're a reseller client, your Partner ID (ex. PID-1234567), as your username. Your password will be your private key and must be used with the "Key File" Logon type. For more information on this Logon Type, please review this helpful article from Filezilla.
Once connected, you will see the directories for your product subscription(s) i.e. Payments, Payouts or Path. Within the directory you will see subdirectories. Please find an example below:
- Reports (this is where Nomupay will load "Report" files)
- Informational-Cash-Flow-Report
- Archive
- Funding-Report
- Archive
- Informational-Cash-Flow-Report
You can choose to automate the extraction of the .csv files, by applying a script. For your convenience, please find a simple example below, which can serve as a base for you to script the extraction of data from Funding Reports:
#!/bin/bash
cd funding-report/
FILES="daily_funding_report_*.csv"
for f in $FILES
do
parse(f) #up to you to choose what you want to extract from the file during parsing
mv -f "$f" /archive #processed files are moved to archive
done
- Move processed files to archive or,
- Keep the files in their original location and process the files based on the reporting timestamp.
Please note that all files are currently kept indefinitely on the SFTP.
Customer Portal
For the reports where it is indicated as available in the above table, you can extract the report via Nomupay's Customer Portal. The reports are available under Finance > Merchant Funding.