Skip to main content
GET
/
notifications
List notifications for the current user
curl --request GET \
  --url https://core.cyberun.cloud/api/v1/notifications \
  --header 'Authorization: Bearer <token>'
{
  "notification_list": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "notification_title": "Order Completed",
      "notification_body": "Your task has been completed successfully.",
      "is_read": true,
      "created_at": "2023-11-07T05:31:56Z",
      "recipient_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "reference_type": "<string>",
      "reference_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "page_meta": {
    "current_page": 1,
    "per_page": 20,
    "total_count": 42
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

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

Authorizations

Authorization
string
header
required

User session JWT (Bearer ). Must be paired with the X-Team-ID request header on team-scoped endpoints so the server knows which team's resources to operate on.

Query Parameters

current_page
integer
default:1

Page number to retrieve (1-based). Default: 1.

Required range: x >= 1
Example:

1

per_page
integer
default:20

Number of items per page (1–100). Default: 20.

Required range: 1 <= x <= 100
Example:

20

unread_only
boolean
default:false

If true, return only unread notifications

Response

Notification list

notification_list
object[]
required
page_meta
object
required

Pagination metadata included in all list responses.