NoxVR Documentation
Notifications

Get notifications

Retrieve notifications for the current user.

GET
/users/@me/notifications
AuthorizationBearer <token>

Bearer token authentication for user sessions

In: header

Query Parameters

afterstring

Timestamp to get notifications after

limit?integer
Default50
Rangevalue <= 100
offset?integer
Default0

Response Body

application/json

application/json

curl -X GET "https://nox.hactazia.fr/api/users/@me/notifications?after=string"
{
  "total": 0,
  "after": 0,
  "limit": 0,
  "offset": 0,
  "notifications": [
    {
      "type": "string",
      "data": {},
      "external_id": "string",
      "expires_at": 0,
      "created_at": 0
    }
  ]
}
{
  "error": {
    "message": "You are not logged in.",
    "code": 7,
    "status": 401
  },
  "data": null
}