Sentiment Score
Provides sentiment score for the conversation
The Meetra AI API provides endpoint for analyzing and extracting sentiment scores from processed meeting recording.
Endpoint:
/single-feature-api/meeting/meeting-sentiment
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 sentiment score successfully retrieved. | Meeting_sentiment |
400 | Bad request. | UploadError400 |
401 | Unauthorized. | UploadError401 |
404 | Meeting not found. | - |
Meeting_sentiment (schema)
Property | Type | Description |
---|---|---|
| integer | Sentiment score of 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