Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.meitner.se/llms.txt

Use this file to discover all available pages before exploring further.

January 2025
DirectoryAPIDataExportAPI
We’ve added the DataExport API to provide enhanced data export capabilities. Please note that this API is not yet supported in our official SDKs, but you can integrate with it directly using the API endpoints.We’ve also added the MealPlanner role to EmployeePlacement in the Directory API. This new role expands the functionality available for employee placement management.Important SDK Update Requirements:
  • Users of our official SDKs need to upgrade to at least v0.4.0 for Python and v0.3.0 for C# to access the new MealPlanner role.
  • Users with handwritten packages need to update their own implementations.
  • Handwritten package updates will not take effect until February 27th, 2025.
  • Older SDK versions will no longer be supported starting February 27th, 2025.
October 2025
DirectoryAPI
We’re excited to announce the release of our official client libraries for C# and Python! These libraries make it easier to integrate with the Meitner API.Both libraries provide full type safety, async support, and comprehensive documentation to help you get started quickly.
April 2026
DirectoryAPIAuthentication

New: OAuth 2.0 authentication

You can now authenticate API requests using an OAuth 2.0 Bearer token in addition to the existing Client-ID / Client-Secret header method. Request a token at POST /oauth/token using the Client Credentials grant, then send it as Authorization: Bearer <token> on subsequent requests.The legacy Client-ID / Client-Secret method remains fully supported — no action required for existing integrations. See the Authentication guide for details.

New: Grading endpoints in the Directory API

The Directory API now exposes two new resources for reading and managing student grades:
  • GradeElementary — grades for compulsory school years 6–9. Supports GET, LIST, POST, PATCH, and DELETE.
  • GradeUpperSecondary — grades for upper secondary years 1–3, including course extent (Normal / Extended / Reduced) and course section (General / Program / Orientation / Specialization / Individual / Project / Elementary). Supports GET, LIST, POST, PATCH, and DELETE.
Both use the standard grading scale (A, B, C, D, E, F, MISSING) and grade term (HT, VT).

New: eduPersonPrincipalName on Student and Employee

Student and Employee resources now expose an optional eduPersonPrincipalName (EPPN) field — a globally unique, persistent identifier used to identify users across Swedish e-services (SS12000:2020, TK450). Format: localIdentifier@domain (e.g. kalko@edu.goteborg.se).The field is nullable and supports read, create, and update operations. It is not exposed on Guardian.

Fix: StudentPlacement update auto-restores archived placements

Calling PATCH /student-placements/{id} on an archived placement with endDate set to null or a future date now automatically restores the placement to active status, consistent with the behavior of EmployeePlacement. Previously, archived placements remained archived even after the end date was cleared, requiring an explicit call to the restore endpoint.