If you want to allow users to access the detailed report directly you can generate a link to it.
After the report has been stored it gets a report id which can be retrieved using the endpoint
public string GetReportId(string sesionid){ var client = new RestClient(this.serverUrl + "/congree/api/Linguistic/Reporting/v1/Sessions/" + sessionid); var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "Bearer " + this.token); IRestResponse response = client.Execute(request); var result = JObject.Parse(response.Content); return result["ReportId"]; }
The returned ReportId can now be used to create a link to this report. The pattern is the following:
<https | http>://<your host>/CongreeControlCenter/reports/details?id=<reportid>