SnozeDevelopers
API referenceNotifications

Mark notifications read in a workspace

Stamps `readAt` on the caller's unread notifications in this workspace — the ids in `notificationId` or `notificationIds`, or with `all` every unread one — and appends a read event to the workspace log. Requires `workspace:read` in that workspace; a body with neither ids nor `all` is a validation error, and a single id that matches nothing readable is not found. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

POST
/v1/workspaces/{workspaceId}/notifications/read
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/workspaces/string/notifications/read" \  -H "Content-Type: application/json" \  -d '{}'
{  "data": {    "notificationIds": [      "string"    ],    "readAt": "string"  }}