Generate a viewer-only reroute URL
auto_scribe.studies.viewer_only_reroute_url(StudyViewerOnlyRerouteURLParams**kwargs) -> StudyViewerOnlyRerouteURLResponse
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.
Parameters
Generate a viewer-only reroute URL
import os
from avara import Avara
client = Avara(
api_key=os.environ.get("AVARA_API_KEY"), # This is the default and can be omitted
)
response = client.auto_scribe.studies.viewer_only_reroute_url()
print(response.url){
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}Returns Examples
{
"url": "https://viewer.avarasoftware.com/study/stu_1234?token=abc123"
}