Skip to main content
POST
/
v1
/
ambient
/
api
/
scribe
/
{scribe_id}
/
regenerate
/
text
Regenerate scribe from new transcripts
curl --request POST \
  --url https://rcm-api.athelas.com/v1/ambient/api/scribe/{scribe_id}/regenerate/text \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transcripts": [
    "<string>"
  ]
}
'
{
  "scribe_id": 123,
  "status": "IN_PROGRESS"
}

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

Body

application/json
transcripts
string[]
required

Response

202 - application/json

Regeneration accepted

scribe_id
integer
required
status
enum<string>
required
Available options:
IN_PROGRESS,
COMPLETED,
FAILED