Skip to main content
POST
/
v1
/
ambient
/
api
/
feedback
Submit feedback
curl -sS -X POST https://rcm-api.athelas.com/v1/ambient/api/feedback \
  -H 'Authorization: Bearer $TOKEN' -H 'Content-Type: application/json' \
  -d '{"scribe_id":12345,"feedback":"Great note quality","rating":4.5,"category":"Transcription Issue"}'
{
  "id": 123,
  "scribe_id": 123,
  "feedback": "<string>",
  "rating": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json
scribe_id
integer
required

ID of the scribe to provide feedback for

feedback
string
required

Feedback text/comment

rating
number<float> | null

Optional rating (float with max 1 decimal place)

category
enum<string> | null

Optional feedback category

Available options:
Missing Key Information,
Inaccurate Information,
Transcription Issue,
Other,
No Issue

Response

200 - application/json

Feedback accepted

id
integer
scribe_id
integer
feedback
string
rating
number | null