GET ./transfers/classes

Tags: pagination, simple-query

It is used to return the transfers between classes.

GET parameters

NameValue TypeValidationDetails
searchtextOptionalValue['john']; Returns the transfers with student names that contain the word "john"
clIDintOptionalValue[350]; Returns the transfers where the id of the source or destination class is equal to 350

Output example

{
"meta": {
"countTotal": "1",
"countData": "1",
"countOffset": ""
},
"data": [
{
"tcElevID": "156667",
"tcTransferNumber": "1578",
"tcTransferDate": "2022-05-04 00:00:00",
"tcFromClass": {
"clID": "350",
"clNume": "XI E"
},
"tcToClass": {
"clID": "351",
"clNume": "XI C"
},
"elev": {
"uaID": "156667",
"uaTip": "1",
"uaFirstName": "Laura",
"uaLastName": "Kent",
"uaSex": "2",
"prefAvatar": null,
"roles": [
{
"roleID": "13",
"roleName": "Elev"
}
],
"clasa": {
"clID": "351",
"clNume": "XI C",
"ascIsActiv": "1",
"ascNume": "2021/2022"
}
}
}
]
}