Skip to content
Get started

Generate a reroute URL with viewer and dictation

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.

Body ParametersExpand Collapse
assignedToUserId: string

User ID to assign study to. Format: usr_{32-hex-chars}

studyId: optional string

Unique study identifier. Format: stu_{32-hex-chars}

studyInstanceUid: optional string

DICOM Study Instance UID. Must be a valid DICOM UID format (e.g., '1.2.840.10008.5.1.4.1.1.2')

minLength1
ReturnsExpand Collapse
url: string
Generate a reroute URL with viewer and dictation
curl https://api.avarasoftware.com/v1/autoScribe/studies/reroute-url \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $AVARA_API_KEY" \
    -d '{
          "assignedToUserId": "usr_1234567890abcdef1234567890abcdef",
          "studyId": "stu_1234567890abcdef1234567890abcdef",
          "studyInstanceUid": "1.2.840.113619.2.55.3.604688119.868.1234567890.123"
        }'
{
  "url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}
Returns Examples
{
  "url": "https://autoscribe.avarasoftware.com/study/stu_1234?token=abc123"
}