v19

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-037759134.1 KB
notifications

Get multiple notifications

get/notifications

Response

Expected response to a valid request

idstring required

The id of the notification

user_idstring required

The id of the user who received the notification

type'project_update' | 'team_invite' | 'status_change' | 'moderator_message' nullable

The type of notification

titlestring required

The title of the notification

textstring required

The body text of the notification

linkstring required

A link to the related project or version

readboolean required

Whether the notification has been read or not

createdstring ISO-8601 required

The time at which the notification was created

Example response

[
  {
    "id": "UUVVWWXX",
    "user_id": "EEFFGGHH",
    "type": "project_update",
    "title": "**My Project** has been updated!",
    "text": "The project, My Project, has released a new version: 1.0.0",
    "link": "mod/AABBCCDD/version/IIJJKKLL",
    "actions": [
      {
        "title": "Accept",
        "action_route": [
          "POST",
          "team/{id}/join"
        ]
      }
    ]
  }
]