Skip to main content
PUT
/
tiro
/
notes
/
{note_id}
Replace note settings
curl --request PUT \
  --url https://{deployment}/api/v1/tiro/notes/{note_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "title": "<string>",
  "transcribe_locale": "<string>",
  "translate_locale": "<string>",
  "summary_locale": "<string>",
  "enable_audio_replay": true,
  "enable_realtime_translation": true,
  "enable_enhanced_transcription": true
}
'
{
  "success": true,
  "note_id": 123,
  "note_guid": "<string>",
  "title": "<string>",
  "note_url": "<string>",
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

Path Parameters

note_id
integer
required

Numeric Tiro note ID (not the note GUID — the handler parses it as an integer).

Body

application/json
title
string
transcribe_locale
string
translate_locale
string
summary_locale
string
enable_audio_replay
boolean
enable_realtime_translation
boolean
enable_enhanced_transcription
boolean

Response

Updated note

success
boolean
note_id
integer
note_guid
string
title
string
note_url
string
message
string