Create an ephemeral AutoScribe viewer session
POST/v1/autoScribe/ephemeral-sessions
Mints a 30-second tokenized landing URL for a userless, studyless AutoScribe viewer session. The token names a customer retrievalId (not an Avara study). Optional options are echoed verbatim on ephemeral.access_requested (max 3072 bytes JSON). Optional hangingProtocol applies a single-monitor layout when the viewer loads. Requires a customer study webhook on the API key.
Create an ephemeral AutoScribe viewer session
curl https://api.avarasoftware.com/v1/autoScribe/ephemeral-sessions \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $AVARA_API_KEY" \
-d '{
"retrievalId": "order-12345",
"hangingProtocol": {
"layout": "2x2",
"viewportAssignments": [
"Axial T1",
"Axial T2",
null,
"Sagittal T2"
]
}
}'{
"url": "https://autoscribe.avarasoftware.com/token/landing?token=abc123"
}Returns Examples
{
"url": "https://autoscribe.avarasoftware.com/token/landing?token=abc123"
}