get
https://{yourinstance}.makaira.io/notifications
Returns a list of notifications for the current user.
Requires authentication.
Request
GET /notifications
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Response
Returns a JSON array of notification objects.
Response Body
| Field | Type | Description |
|---|---|---|
id | integer | Notification ID. |
title | object or string | Notification title. May be a multilingual object with en and de keys, or a plain string. |
message | object or string | Notification message content. May be multilingual or a plain string. |
read | boolean | true if this notification has been marked as read by the current user. |
createdAt | string | ISO 8601 timestamp of when the notification was created. |
Example Response
[
{
"id": 1,
"title": {
"en": "Importer finished",
"de": "Importer abgeschlossen"
},
"message": {
"en": "The product import completed successfully.",
"de": "Der Produktimport wurde erfolgreich abgeschlossen."
},
"read": false,
"createdAt": "2026-04-27T06:00:00Z"
}
] 200OK

