Get a list of the current user's grades

GET /Api/Grades

Requires verified email; Requires one of the following permissions: School.IndexGrades; Requires the following features to be enabled: School

Query parameters

  • Filters string
  • Sorts string
  • Page integer(int32)

    Minimum value is 1, maximum value is 2147483647.

  • PageSize integer(int32)

    Minimum value is 1, maximum value is 2147483647.

Responses

GET /Api/Grades
curl \
 -X GET https://app.lovassy.hu/Api/Grades \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "subject": "string",
    "grades": [
      {
        "id": 42,
        "uid": "string",
        "subject": "string",
        "subjectCategory": "string",
        "theme": "string",
        "teacher": "string",
        "group": "string",
        "gradeValue": 42,
        "textGrade": "string",
        "shortTextGrade": "string",
        "weight": 42,
        "evaluationDate": "2024-05-04T09:42:00+00:00",
        "createDate": "2024-05-04T09:42:00+00:00",
        "type": "string",
        "gradeType": "string",
        "createdAt": "2024-05-04T09:42:00+00:00",
        "updatedAt": "2024-05-04T09:42:00+00:00"
      }
    ]
  }
]