Conversation Dynamics
Retrieve the dynamics of a processed meeting sliced into given time intervals.
URL
GET /single-feature-api/meeting/meeting-dynamicsParameters
Responses
{
"dynamics": [
{
"start": 0,
"end": 300000,
"sentiment": "Neutral",
"energy_score": 80,
"interactions_score": 75,
"emotions": ["Neutral", "Happiness"]
},
{
"start": 300000,
"end": 600000,
"sentiment": "Somewhat Positive",
"energy_score": 65,
"interactions_score": 60,
"emotions": ["Neutral", "Happiness"]
},
...
]
}Example
Last updated