Speaker Detection
Returns a list of speakers in a meeting
This endpoint accepts GET
requests with no request parameters.
Endpoint
GET /api/meeting/speakers HTTP/1.1
Response
The response payload is a JSON object that contains a speakers
array. Each element of the speakers
array is an object with two properties: alias
and id
.
Response Properties
Property
Type
Description
alias
string
The alias of the speaker.
id
string
The unique identifier of the speaker.
Example Response
{
"speakers": [
{
"alias": "Daniel",
"id": "1c2ee2da-e2f6-433d-b554-248707c2491c"
},
{
"alias": "Adrian",
"id": "2d3fe3da-f3e6-444d-b555-349707b2492b"
}
]
}
Error Handling
If an error occurs while processing the request, the API will return a response with a status code indicating the error type and a JSON object containing an error
property with a description of the error.
Example Error Response
{
"error": "Invalid request format."
}
Note: This documentation is for the /api/meeting/speakers
endpoint only. For details on other endpoints, please refer to their respective documentation.
Last updated