GET ./elevi/evolutie_absente

It is used to return all the subjects with the absences that are motivated / unmotivated / total, and they are sorted by total number of absences.

Need subscription flag: FLAG_STATS_STUDENT_PROGRESS

GET parameters

NameValue TypeValidationDetails
elevIDintRequiredStudent ID.
ascIDintRequiredSchool year ID.
sanIDintRequiredSemester ID.

Output example

{
"materii": [
{
"matNume": "Biologie",
"absente": {
"motivate": "2",
"nemotivate": "7",
"totale": "9"
}
},
{
"matNume": "Aplicatii ale matematicii in practica (opt)",
"absente": {
"motivate": "1",
"nemotivate": "4",
"totale": "5"
}
},
{
"matNume": "Dirigenţie",
"absente": {
"motivate": "3",
"nemotivate": "0",
"totale": "3"
}
},
{
"matNume": "Limba şi literatura română",
"absente": {
"motivate": "1",
"nemotivate": "2",
"totale": "3"
}
},
{
"matNume": "Limba engleză",
"absente": {
"motivate": "1",
"nemotivate": "0",
"totale": "1"
}
},
{
"matNume": "Matematică",
"absente": {
"motivate": "1",
"nemotivate": "0",
"totale": "1"
}
},
{
"matNume": "Fizică",
"absente": {
"motivate": "0",
"nemotivate": "0",
"totale": "0"
}
}
],
"totalOre": 462,
"totalOreAbsente": 22
}