Welcome to unifinu's doc center

Print

Unifinu APP allows you to upload reports via the Rest API. It’s an easy way to provide reports to unifinu that can be used to get more insights into your transaction data. Since it’s uploaded via API, you can have it fully automated. Whether you want daily, weekly, monthly or something very specific, it’s fine. 

POST: /unifinu/{merchantId}/{pspId}/upload

In your API request you need to specify the merchantId and pspId in the path of the endpoint.

In the header you need to specify the file that needs to be uploaded by using the tag ‘file’.

Key
Value
file
OperationsReport.csv

If the request was handled successfully and a statuscode 200 was returned, a response would look like below.

JSON
				{
  "fileName": "OperationsReport.csv",
  "operation": "string",
  "status": "string",
  "uploadedRecords": 842
}
			
On this page