get
https://api.clustaar.io/bots//stats/stories_satisfaction
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Get stories satisfaction stats for a given period. The satisfaction are collected thanks to User Feedback step. There can be one User Feedback step per story. This endpoint allow to get the satisfaction per story.
Response
| Attribute | Type | Description |
|---|---|---|
| data[].type | string | always "story_satisfaction" |
| data[].storyName | string | the story name |
| data[].storyID | string | the story ID |
| data[].positiveRatingsCount | int | the number of positive ratings |
| data[].negativeRatingsCount | int | the numbers of negative ratings |
| data[].ratingsCount | int | total number of ratings received |
| data[].satisfactionStepExecutionsCount | int | number of times satisfaction was asked |
| data[].positiveRatingsPercent | float | percentage of positive ratings |
| data[].negativeRatingsPercent | float | percentage of negative ratings |
| data[].satisfactionCompletionPercent | float | percentage of person that completed the satisfaction |
{
"data": [
{
"type": "story_satisfaction",
"storyName": "story 27",
"storyID": "a27a27a27a27a27a27a27a27",
"positiveRatingsCount": 55,
"negativeRatingsCount": 24,
"ratingsCount": 79,
"satisfactionStepExecutionsCount": 95,
"positiveRatingsPercent": 0.6962025316,
"negativeRatingsPercent": 0.3037974684,
"satisfactionCompletionPercent": 0.8315789474
}
]
}