get https://api.clustaar.io/bots//stats/daily_stories_satisfaction
Get daily 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 "timed_story_satisfaction" |
data[].date | string | date of the statistic "2018-10-05" |
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": "timed_story_satisfaction",
"storyName": "story 27",
"storyID": "a27a27a27a27a27a27a27a27",
"positiveRatingsCount": 18,
"negativeRatingsCount": 4,
"ratingsCount": 22,
"satisfactionStepExecutionsCount": 24,
"positiveRatingsPercent": 0.8181818182,
"negativeRatingsPercent": 0.1818181818,
"satisfactionCompletionPercent": 0.9166666667,
"date": "2018-01-27"
}
]
}