Skip to main content
POST
/
tiro
/
notes
Create a note
curl --request POST \
  --url https://{deployment}/api/v1/tiro/notes \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "title": "Kickoff",
  "context": "Project kickoff",
  "thread_ids": [
    12
  ],
  "transcribe_locale": "en_US"
}
'
{
  "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).

Body

application/json
title
string
required
context
string
thread_ids
integer[]
transcribe_locale
string
translate_locale
string
summary_locale
string

Response

Created note

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