SnozeDevelopers
API referenceWhats new

Acknowledge What's New releases up to a release id

Moves the caller's watermark for a channel forward to the given release and returns the resulting state. Naturally idempotent: the watermark only ever moves forward, so replaying an ack is a no-op.

POST
/v1/me/whats-new/ack
AuthorizationBearer <token>

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

In: header

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/me/whats-new/ack" \  -H "Content-Type: application/json" \  -d '{    "channel": "web",    "releaseId": "string"  }'
{  "data": {    "channel": "web",    "lastSeenReleaseId": "string",    "accountCreatedAt": "string"  }}