Skip to main content
Version: v2

ConferenceTranscriptionResponse

Transcription of the call recording broken down by participant

statestringrequired

Transcription state

Possible values: [READY, PROCESSING, NOT_AVAILABLE]

Example: READY
summarystring

Brief summary of the call (if available)

Example: Discussed the plan for the week and assigned tasks
segments object[]

Transcription segments with participants and timestamps

  • Array [
  • memberIdstring

    Member (membership) ID, if known

    Example: ADK5NyCqIK
    participantNamestring

    Participant name

    Example: John Smith
    textstringrequired

    Text spoken by the participant

    Example: Let's start by discussing the plan
    startTimeMsinteger<int64>required

    Segment start time from the beginning of the recording (milliseconds)

    Example: 5000
    endTimeMsinteger<int64>required

    Segment end time from the beginning of the recording (milliseconds)

    Example: 8500
  • ]
  • ConferenceTranscriptionResponse
    {
    "state": "READY",
    "summary": "Discussed the plan for the week and assigned tasks",
    "segments": [
    {
    "memberId": "ADK5NyCqIK",
    "participantName": "John Smith",
    "text": "Let's start by discussing the plan",
    "startTimeMs": 5000,
    "endTimeMs": 8500
    }
    ]
    }