Skip to main content
GET
/
transcription
cURL
curl --request GET \
  --url https://api.umified.com/api/v1/transcription \
  --header 'Authorization: Bearer <token>'
[
  {
    "result": [
      {
        "speech_no": 0,
        "participant_name": "John Doe",
        "speech_text": "The attendees are there or not. Great. Attendees are also there. Yeah, active speaker is also there. Great."
      }
    ],
    "message": "Your meeting transcription is fetched successfully.",
    "status_code": 200,
    "destination": null
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

session_id
string
required

The session ID of the meeting instance from create meeting api call.

token
string

The authentication bearer token value - provide if you would like to download the whole transcription as a VTT file.

Response

Successful response (either transcription list or status message)

result
object[]
required
message
string
required
Example:

"Your meeting transcription is fetched successfully."

status_code
integer
required
Example:

200

destination
string | null
required
Example:

null