Generate a reroute URL with viewer and dictation
client.autoScribe.studies.rerouteURL(StudyRerouteURLParams { assignedToUserId, studyId, studyInstanceUid } body, RequestOptionsoptions?): StudyRerouteURLResponse { url }
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
Returns
Generate a reroute URL with viewer and dictation
import Avara from 'avara';
const client = new Avara({
apiKey: process.env['AVARA_API_KEY'], // This is the default and can be omitted
});
const response = await client.autoScribe.studies.rerouteURL({
assignedToUserId: 'usr_1234567890abcdef1234567890abcdef',
});
console.log(response.url);{
"url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}Returns Examples
{
"url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}