GET ./conduita/punctaje

It is used to get the list of students with the aggregated behavior score (reward / deviation / remark) for a semester. Matches the secretary "behavior score" screen.

Allowed for: director / secretary / rep_adservio / admin, or any teacher when the modulConduita school config flag is active.

GET parameters

NameValue TypeValidationDetails
sanIDintRequiredSemester ID.
namestringOptionalFilters by student name.
clIDintOptionalFilters by class ID.
_orderstringOptionalCustom ordering, e.g. _order=>punctajRecompensa,punctajAbatere,punctajRemarca. Prefix > = descending, < = ascending.

Output example

{
"meta": {
"countTotal": "1",
"countData": "1",
"countOffset": "0"
},
"data": [
{
"elevID": "123",
"elevNume": "Popescu",
"elevPrenume": "Ion",
"elevInitTata": "M",
"clID": "45",
"clNume": "9 A",
"punctajRecompensa": "15",
"punctajAbatere": "8",
"punctajRemarca": "0"
}
]
}