GET ./elevi/evolutie

It is used to return the data for the charts.

Need subscription flag: FLAG_STATS_STUDENT_PROGRESS

Chart type:

  • 1 -> general average
  • 2 -> class rankings

To display the tooltip with Min and Max Average for the entire period, we will use the Monday-Friday interval as in the example below:

  • Minimum general average (registered between Oct. 3 and Oct. 7).

The variable "date" from the output, represents the Friday day of each week.

GET parameters

NameValue TypeValidationDetails
elevIDintRequiredStudent ID.
ascIDintRequiredSchool year ID.
tipintOptionalChart type.

Output example

{
"meta": {
"totalCount": 2
},
"data": [
{
"date" : "2018-09-12",
"value": "8.43"
},
{
"date" : "2018-09-19",
"value": "9"
}
]
}