Skip to main content
POST
/
v1
/
ambient
/
api
/
scribe
/
{scribe_id}
/
regenerate
/
audio
Regenerate scribe from new audio
curl --request POST \
  --url https://rcm-api.athelas.com/v1/ambient/api/scribe/{scribe_id}/regenerate/audio \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'audio_files=<string>' \
  --form audio_files.items='@example-file'
{
  "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

multipart/form-data
audio_files
file[]
required

One or more replacement audio files

Supported types: mp3, mp4, mpeg, mpga, m4a, wav, webm. Maximum file size in the web interface is 5MB. For files larger than 5MB, use the API directly via curl.

Response

202 - application/json

Regeneration accepted

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