## Reroute URL `StudyRerouteUrlResponse AutoScribe.Studies.RerouteUrl(StudyRerouteUrlParamsparameters, CancellationTokencancellationToken = default)` **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 - `StudyRerouteUrlParams parameters` - `required string assignedToUserID` User ID to assign study to. Format: usr_{32-hex-chars} - `string studyID` Unique study identifier. Format: stu_{32-hex-chars} - `string studyInstanceUid` DICOM Study Instance UID. Must be a valid DICOM UID format (e.g., '1.2.840.10008.5.1.4.1.1.2') ### Returns - `class StudyRerouteUrlResponse:` Response containing the generated reroute URL for AutoScribe (viewer + dictation) - `required string Url` ### Example ```csharp StudyRerouteUrlParams parameters = new() { AssignedToUserID = "usr_1234567890abcdef1234567890abcdef" }; var response = await client.AutoScribe.Studies.RerouteUrl(parameters); Console.WriteLine(response); ```