Speaker Key Points

Retrieves the list of key points stated by speakers in a processed meeting.

URL

/single-feature-api/meeting/key-points

Method

GET

Description

This endpoint allows you to retrieve the list of key points stated by speakers in a processed meeting. Key points are important statements or highlights made by the speakers during the meeting.

Parameters

  • Authorization (header parameter, required): Bearer token for authentication.

  • file-hash (query parameter, required): Hash of the meeting recording file.

Responses

  • 200: Meeting key points successfully retrieved. Returns a JSON object containing the key points stated by speakers (Key_point_model).

  • 400: Bad request error.

  • 401: Unauthorized error.

  • 404: Meeting not found error.

  • Other possible responses are not specified.

Key_point_model

This is the JSON response schema for the successful 200 response:

{
  "key_points": {
    "<speaker_id>": ["<key_point_1>", "<key_point_2>", "..."],
    ...
  }
}
  • key_points: An object where the keys are the speaker IDs and the values are arrays of key points stated by each speaker.

Example

Request

GET /single-feature-api/meeting/key-points?file-hash=<meeting_file_hash>

Response

{
  "key_points": {
    "11eb454c-68d4-40f0-b965-0074bc0e688f": ["Key point 1", "Key point 2"],
    "582fc671-5b8b-498d-a09e-bfb53145b05a": ["Key point 3"],
    "637f9221-ab4a-46bb-979e-776ba541a407": ["Key point 4", "Key point 5"],
    "b01792fb-5097-46d7-b458-1d559a9b4978": ["Key point 6"]
  }
}

This example response shows the key points stated by different speakers in the processed meeting. Each speaker is identified by their speaker ID, and the key points are provided as an array of strings.

Last updated