Skip to main content
GET
/
v1
/
ambient
/
api
/
scribe
/
{scribe_id}
Get scribe
curl -sS https://rcm-api.athelas.com/v1/ambient/api/scribe/12345 -H 'Authorization: Bearer $TOKEN'
{
  "scribe_id": 123,
  "workflow_id": 123,
  "transcriptions": [
    {
      "transcription_id": 123,
      "status": "<string>",
      "text": "<string>"
    }
  ],
  "status": "IN_PROGRESS",
  "audio_length_seconds": 123,
  "patient_name": "<string>",
  "date_of_service": "2023-11-07T05:31:56Z",
  "additional_context": {},
  "ai_tasks": [
    {
      "template_id": 123,
      "template_name": "<string>",
      "task_status": "IN_PROGRESS",
      "output_json": {}
    }
  ],
  "error_message": "<string>",
  "submitted_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

scribe_id
integer
required

Response

200 - application/json

Scribe status and details

scribe_id
integer
required
workflow_id
integer
required
transcriptions
object[]
required
status
enum<string> | null
Available options:
IN_PROGRESS,
COMPLETED,
FAILED
audio_length_seconds
integer | null
patient_name
string | null
date_of_service
string<date-time> | null
additional_context
object
ai_tasks
object[]
error_message
string | null
submitted_at
string<date-time> | null
completed_at
string<date-time> | null