Individual Speaker Balance

This endpoint allows you to retrieve the list of speakers along with their speaking percentages in a processed meeting.

URL: /speakers-balance

Method: GET

Parameters

  • Authorization: Bearer token (header)

  • file-hash: Hash of the meeting recording file (query)

Responses

  • 200 OK: List of speakers successfully retrieved

    • Example:

      {
        "speakers": [
          {
            "meeting_speaking_percentage": 0.0,
            "id": "string"
          }
        ]
      }
  • 400 Bad Request: Invalid request

    • Example:

      {
        "message": "Bad request"
      }
  • 401 Unauthorized: Unauthorized access

    • Example:

      {
        "message": "Unauthorized"
      }
  • 404 Not Found: Meeting not found

    • Example:

      {
        "message": "Meeting not found"
      }

By utilizing this endpoint, you can obtain valuable information about the distribution of speaking percentages among the different speakers in a processed meeting.

Last updated