Download

Returns a file stored on the fintechOS platform encoded using the Base46 scheme. You can use this in conjunction with the Upload API endpoint to transfer files between FintechOS platform servers.

Syntax

Copy
POST <host_address>/api/openApiV2/Download
            
Content-Type: application/json
AccessToken: <access_token>
            
{
    <file_id>
}
 
Parameter Description
host_address URL of the FintechOS platform server.
access_token Access token used to connect to the API endpoint. For details, see Authentication.
file_id Unique ID of the file to be downloaded from the FintechOS server.

Response

If the download is successful, the file content encoded using the Base64 scheme is returned.

Examples