SnozeDevelopers
API referenceNotifications

List the caller's notification preferences

Returns every notification preference the caller has saved: the delivery channel, whether it is enabled, its cadence, and the workspace, category, or kind it overrides. Scoped to the authenticated user, so no workspace permission is involved.

GET
/v1/notification-preferences
AuthorizationBearer <token>

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

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/notification-preferences"
{  "data": [    {      "id": "string",      "workspaceId": "string",      "category": "collaboration",      "kind": "comment",      "channel": "in_app",      "enabled": true,      "cadence": "immediate"    }  ]}