Skip to main content
GET
/
v1
/
announcements
List announcements for the current organization
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/announcements \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "orgSlug": "<string>",
      "title": "<string>",
      "summary": "<string>",
      "icon": "<string>",
      "status": "draft",
      "targets": {},
      "expires_at": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 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

status
string

Filter by status (draft, active, archived).

Maximum string length: 32
limit
string

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

page
string

Page index (0-based, default 0).

Response

Paginated list of announcements.

items
object[]
total
integer
page
integer
limit
integer