Skip to content
Monologue
Esc
navigateopen⌘Jpreview

Submit transcription feedback

Attach a thumbs-up or thumbs-down to a completed enterprise dictation. Text and audio are optional evidence stored only when explicitly attached.

POST/v1/enterprise/transcriptions/{transcription_id}/feedback
Authorization
X-API-KeyAPI key · headerrequired
Long-lived Enterprise API credential provisioned for trusted servers.
or
AuthorizationBearer token (mlg_ent_client) · headerrequired
Short-lived token for browser, mobile, or desktop clients.
Path parameters
transcription_idstringrequired
The id returned by the dictation response.
max length 255
Request body
requiredmultipart/form-data
sentimentstringrequired
The user's thumbs-up or thumbs-down signal.
Allowed:likedislike
textstring
Optional final text shown to the user. Attaching it opts this content into storage for quality review.
max length 1048576
audiostring<binary>
Optional source audio, up to 100 MB. Attaching it opts this content into storage for quality review.
Responses
201Feedback stored.
feedback_idstring<uuid>required
transcription_idstringrequired
sentimentstringrequired
Allowed:likedislike
400The request is invalid.
errorstring
codestring
request_idstring
401The credential is missing, invalid, expired, or revoked.
errorstring
codestring
request_idstring
403The request origin is not allowed.
errorstring
codestring
request_idstring
413The audio upload exceeds the configured limit.
errorstring
codestring
request_idstring
429The API key request limit was exceeded.
errorstring
codestring
request_idstring
500An internal error occurred while processing the request.
errorstring
codestring
request_idstring
503Dictation processing is temporarily unavailable.
errorstring
codestring
request_idstring
Request
curl -X POST "https://go.monologue.to/v1/enterprise/transcriptions/string/feedback" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -d '{
  "sentiment": "dislike"
}'
Response
{
  "feedback_id": "<uuid>",
  "transcription_id": "string",
  "sentiment": "like"
}