Generate a reroute URL with viewer and dictation
auto_scribe.studies.reroute_url(StudyRerouteURLParams**kwargs) -> StudyRerouteURLResponse
POST/v1/autoScribe/studies/reroute-url
Generates a tokenized URL that redirects users to the AutoScribe interface (viewer + dictation) for the specified study and user. The URL includes authentication and is time-limited for security.
Parameters
Generate a reroute URL with viewer and dictation
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.reroute_url(
assigned_to_user_id="usr_1234567890abcdef1234567890abcdef",
)
print(response.url){
"url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}Returns Examples
{
"url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}