GET https://download.connect.uniserv.com/download/v1/software/<product>/latest/<platform>/<artifact>
Software
Following release V3 software packages and modules could be downloaded manually in the browser or via API:
-
Software Bundle includes
-
User Manuals
-
Release Notes
-
Bank Service
-
License Service
-
Uniserv Web Application Service (UWS)
All packages but UWS are available for following platforms:
-
Windows
-
Linux
-
AIX
UWS is only available for Linux.
Download in browser
In order to download your subscribed software you have to log on Uniserv CONNECT and go to the onPremises area. There you will find the latest version for all software packages you have subscribed for all available platforms. After download, you have to unzip the file and start the installation in the usual way.
Download via API
With the following request you can download the latest version for the platform of your subscribed software package.
Please note you have to provide your API Key in the Authorization Header as Bearer Token! |
Supported products <product> are:
-
software-bundle
-
license-service
-
bank-service
-
uws
Supported platforms <platform> are:
-
windows
-
linux
-
aix
Please note, uws is only available for linux! |
Corresponding artifact names <artifact> are:
-
software-bundle.zip
-
user-manuals.zip
-
release-notes.zip
-
license-service.zip
-
bank-service.zip
-
uws.zip
Examples:
curl -H "Authorization: Bearer <your api key>" https://download.connect.uniserv.com/download/v1/software/uws/latest/linux/uws.zip curl -H "Authorization: Bearer <your api key>" https://download.connect.uniserv.com/download/v1/software/software-bundle/latest/windows/software-bundle.zip curl -H "Authorization: Bearer <your api key>" https://download.connect.uniserv.com/download/v1/software/software-bundle/latest/release-notes.zip
When downloading artifacts with curl
, you have two options for handling filenames:
-
Use
-O
to save the file using the basename from the URL (e.g.,license-service.zip
). -
Use
-OJ
to use the filename provided by the server in theContent-Disposition
header, which includes the version number.
For example, using -OJ
will download:
software-bundle_5.4.3.0.zip
Example:
curl -H "Authorization: Bearer <your api key>" -OJ https://download.connect.uniserv.com/download/v1/software/software-bundle/latest/windows/software-bundle.zip
Please note, in order to download user manuals or release notes separately, you don’t have to specify the platform, as shown in the above example! |
User manuals as well as release notes are also included in the software bundle.
After download, you have to unzip the file and start the installation in the usual way.