Create an ephemeral AutoScribe viewer session
auto_scribe.ephemeral_sessions.create(EphemeralSessionCreateParams**kwargs) -> EphemeralSessionCreateResponse
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
import os
from avara import Avara
client = Avara(
api_key=os.environ.get("AVARA_API_KEY"), # This is the default and can be omitted
)
ephemeral_session = client.auto_scribe.ephemeral_sessions.create(
retrieval_id="order-12345",
)
print(ephemeral_session.url){
"url": "https://autoscribe.avarasoftware.com/token/landing?token=abc123"
}Returns Examples
{
"url": "https://autoscribe.avarasoftware.com/token/landing?token=abc123"
}