Skip to main content
GET
/
v1
/
notifications
List notifications for the current user
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/notifications \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "type": "announcement",
      "title": "<string>",
      "summary": "<string>",
      "icon": "<string>",
      "link": "<string>",
      "read": true,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "unread_count": 123,
  "page": 123,
  "limit": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

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

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Query Parameters

product
string

Optional product filter.

Maximum string length: 64
read
enum<string>

Filter by read flag.

Available options:
true,
false
Maximum string length: 10
limit
string

Max items per page (capped at 100, default 50).

page
string

Page index (0-based, default 0).

Response

Notifications and unread counter.

items
object[]
total
integer
unread_count
integer
page
integer
limit
integer