Comment on page
Speaker Balance Score
API endpoint to retrieve the speaker balance score of a processed meeting.
GET /single-feature-api/meeting/balance-score
Name | Type | Description |
---|---|---|
Authorization | Header | Bearer token for authentication. |
file-hash | Query | Hash of the meeting recording file. |
The request should include the following header:
Authorization: Bearer <token>
The request should include the following query parameter:
Name | Type | Required | Description |
---|---|---|---|
file-hash | string | true | Hash of the meeting recording file. |
HTTP Code | Description |
---|---|
200 | Success. Returns the meeting balance score as a JSON response. |
400 | Bad request. Invalid or missing parameters. |
401 | Unauthorized. Invalid or expired token. |
404 | Meeting not found. |
HTTP Code: 200
Response Body:
{
"balance_score": 100
}
HTTP Code: 400
Response Body:
{
"message": "Bad request"
}
HTTP Code: 401
Response Body:
{
"message": "Unauthorized"
}
HTTP Code: 404
Response Body:
{
"message": "Meeting not found"
}
GET /single-feature-api/meeting/balance-score?file-hash=7faa938dfb14e7ca8129a40a7e47bb02
Authorization: Bearer <token>
HTTP/1.1 200 OK
Content-Type: application/json
{
"balance_score": 100
}
HTTP Code | Description |
---|---|
400 | Bad request. Invalid or missing parameters. |
401 | Unauthorized. Invalid or expired token. |
404 | Meeting not found. |
Last modified 5mo ago