Generate a viewer-only reroute URL
client.autoScribe.studies.viewerOnlyRerouteURL(StudyViewerOnlyRerouteURLParams { studyId, studyInstanceUid, userId } body?, RequestOptionsoptions?): StudyViewerOnlyRerouteURLResponse { url }
POST/v1/autoScribe/studies/viewer-only-reroute-url
Generates a tokenized URL that redirects users to the viewer interface only (no dictation) for the specified study. Useful for read-only access or referring physicians. The URL includes authentication and is time-limited.
Generate a viewer-only reroute URL
import Avara from 'avara-software';
const client = new Avara({
apiKey: process.env['AVARA_API_KEY'], // This is the default and can be omitted
});
const response = await client.autoScribe.studies.viewerOnlyRerouteURL();
console.log(response.url);{
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}Returns Examples
{
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}