Using Quatrix API you can download files that are stored in Quatrix cloud. Follow the steps below to download files: 

  1. Log in to the account using GET /session/login.
  2. Get id (ID of the file) from GET /file/metadata.
  3. 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. 
  4. Download files using GET /file/download/{id}. The ID of a file download link should be taken from the previous call.

Example Request URL

 HTTP GET      https://api-test.quatrix.it/api/1.0/file/download/{id}