Welcome to unifinu's doc center

Print

Unifinu APP allows you to download reports via the Rest API. It’s an easy way to get reports that can be used to get more insights into your transaction data. Since it’s downloaded via API, you can have it fully automated. Whether you want a daily report, weekly, monthly or something very specific, it’s fine. In your API request you need to specify the date range and the APP will simply provide you with the respective transactional data. 

POST: /unifinu/download/{from}/{to}

In the endpoint you need to specify the “from date” and the “to date” in the following format; [DATE FORMAT] 

Please ensure you include the correct headers, including the ‘authorization’ element with the JWT token. More info here.

In the body you need to mention the merchantID (account id for Unifinu APP) and PSPID (account for the connected PSP).

Example:

JSON
				{
  "merIds": [
    12345
  ],
  "pspIds": [
    Account1
  ]
}
			

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

JSON
				{
  "body": {},
  "statusCode": "ACCEPTED",
  "statusCodeValue": 0
}
			

The file is downloaded successfully and can be used for further processing.

More information in the API Explorer here.

On this page