Generate a viewer reroute URL
StudyRerouteUrlResponse viewer().studies().rerouteUrl(StudyRerouteUrlParamsparams = StudyRerouteUrlParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
/v1/viewer/studies/reroute-url
Generates a tokenized URL that redirects users directly to the Avara Viewer for the specified study. The URL includes authentication and is time-limited for security.
Parameters
Returns
Generate a viewer reroute URL
package com.avara.example;
import com.avara.client.AvaraClient;
import com.avara.client.okhttp.AvaraOkHttpClient;
import com.avara.models.viewer.studies.StudyRerouteUrlParams;
import com.avara.models.viewer.studies.StudyRerouteUrlResponse;
public final class Main {
private Main() {}
public static void main(String[] args) {
AvaraClient client = AvaraOkHttpClient.fromEnv();
StudyRerouteUrlResponse response = client.viewer().studies().rerouteUrl();
}
}
{
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}
Returns Examples
{
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}