v2

latestOpenAPI 3.1.0Proprietary - Licensed to Authorized Customers Only2026-07-31611061.1 MB
GradeElementary

Get a GradeElementary

Retrieves the GradeElementary with the given ID.

get/grade-elementary/{id}

Path parameters

idstring uuid required
Example:123e4567-e89b-12d3-a456-426614174000

The unique identifier of the GradeElementary to retrieve

Response

Response for GradeElementary Get operation - returns the requested GradeElementary

idstring uuid required

Unique identifier for the GradeElementary

studentIDstring uuid required

The ID of the student the grade belongs to. Must reference a student within the organization who has an active placement at the school referenced by SchoolID.

schoolIDstring uuid required

The ID of the school where the student received the grade. Must reference a school within the organization.

subjectCodestring required

The subject code as defined by the Swedish school authorities (e.g. "MA" for Mathematics, "SV" for Swedish).

languageCodestring nullable

The language code for the grade, used when the subject is taught in a specific language (e.g. mother tongue instruction).

academicYearstring required

The academic year in which the grade was awarded, in the format YYYY/YYYY (e.g. "2024/2025").

term'HT' | 'VT' required

The school term in which the grade was awarded

schoolYear'6' | '7' | '8' | '9' required

The school year of the student when the grade was awarded (elementary school)

teacher1EmployeeIDstring uuid nullable

The ID of the primary teacher responsible for the grade. Must reference an Employee who has an active placement at the school referenced by SchoolID.

teacher2EmployeeIDstring uuid nullable

The ID of the secondary teacher responsible for the grade. Must reference an Employee who has an active placement at the school referenced by SchoolID.

grade'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'MISSING'

The grade awarded to a student

gradeDatestring date nullable

The date the grade was awarded.

finalGradeboolean required

Whether this is the final grade for the student in this subject. A final grade is the official grade used on the student's grade certificate.

isEndedboolean required

Whether the grading period has ended for this student in this subject.

schoolCommentstring nullable

A comment from the school about the grade, visible to the student and guardians.

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "meta": {
    "createdAt": "2024-01-15T10:30:00Z",
    "createdBy": "987fcdeb-51a2-43d1-b567-123456789abc",
    "updatedAt": "2024-01-15T14:45:00Z",
    "updatedBy": "987fcdeb-51a2-43d1-b567-123456789abc"
  },
  "external": {
    "sourceID": "12345678",
    "source": "ExternalIntegrationAPI"
  },
  "studentID": "123e4567-e89b-12d3-a456-426614174000",
  "schoolID": "123e4567-e89b-12d3-a456-426614174000",
  "subjectCode": "MA",
  "languageCode": "SV",
  "academicYear": "2024/2025",
  "teacher1EmployeeID": "123e4567-e89b-12d3-a456-426614174000",
  "teacher2EmployeeID": "123e4567-e89b-12d3-a456-426614174000",
  "gradeDate": "2025-01-15",
  "finalGrade": true,
  "isEnded": true,
  "schoolComment": "Utmärkt arbete under hela terminen."
}