Questions Asked
Retrieve the list of questions asked by speakers in a processed meeting.
The Meetra AI API provides endpoints for retrieving the list of questions asked by speakers in a processed meeting recording. This documentation specifically covers the endpoints related to questions asked.
Endpoint
/single-feature-api/meeting/questions-asked
HTTP Method: GET
Parameters
Authorization
(header): Bearer token required for authentication.file-hash
(query): Hash of the meeting recording file.
Responses
HTTP Status Code | Description | Schema |
---|---|---|
200 | Meeting questions asked successfully retrieved. | Questions_model |
400 | Bad request. | UploadError400 |
401 | Unauthorized. | UploadError401 |
404 | Meeting not found. | - |
Questions_model (schema)
Property | Type | Description |
---|---|---|
| object | Questions asked by each spokesperson in the meeting. |
Example Request
Example Response
Error Responses
HTTP Status Code | Description | Schema |
---|---|---|
400 | Bad request. | UploadError400 |
401 | Unauthorized. | UploadError401 |
404 | Meeting not found. | - |
UploadError400 (schema)
Property | Type | Description |
---|---|---|
| string | Error message. |
UploadError401 (schema)
Property | Type | Description |
---|---|---|
| string | Error message. |
Last updated