Reminders
Endpoint:
https://api.ednia.se/elysia/external/remindersExample:
curl https://api.ednia.se/elysia/external/reminders \
-X GET \
-H "Authorization: Bearer <token>"200
Successful response. There is no pagination. Reminders are sorted by date descending.
There are two types of reminders as defined by reminders.[].type, “GENERAL” and “SPECIFIC”.
When the type is “GENERAL” reminders.[].reminder.event is null and when it’s specific it’s an object (see below).
Example response:
{
"reminders": [
{
"reminder": {
"id": "cmam85jzs0001p97ml3yz1fep",
"createdAt": "2025-05-13T08:03:05.464Z",
"phoneNumber": "+46739596612",
"email": null,
"event": null,
"highSchool": {
"id": "0dc3315f-6e84-4149-8ee5-77ae394b6e8a",
"nameDisplay": "Example HS 1"
}
},
"type": "GENERAL"
},
{
"reminder": {
"id": "cmal7g9sa0002p9azirdbh8x3",
"createdAt": "2025-05-12T14:55:39.659Z",
"phoneNumber": "+46793138957",
"email": null,
"event": {
"id": "46c4a45f",
"title": "Prova-på-dag",
"externalLink": "https://google.com",
"applicationLink": null,
"startDate": "2025-05-14T12:00:00.000Z",
"endDate": "2025-05-14T13:30:00.000Z"
},
"highSchool": {
"id": "eb71d81a-b3f7-4188-a130-e00f2014fc6c",
"nameDisplay": "Example HS 2"
}
},
"type": "SPECIFIC"
}
]
}Error responses
401
If you encounter this error, you are not authenticated.
{
"error": "Unauthenticated"
}403
Unauthorized
{
"error": "Unauthorized"
}429
Rate limit exceeded. Please limit requests to 10 per second and 600 per hour.
{
"error": "Rate limit exceeded"
}