Using Quatrix API you can download files that are stored in Quatrix cloud. Follow the steps below to download files:
- Log in to the account using GET /session/login.
- Get id (ID of the file) from GET /file/metadata.
- Get the download link from POST /file/download-link with the parameter ids (list of file IDs as strings). It can be used to download multiple files at once.
- Download files using GET /file/download/{id}. The ID of a file download link should be taken from the previous call.
Example Request URL