List notifications
list_notificationsRead the organization's notification feed, newest first: what finished, what broke, and what changed since you last looked. Categories include audit_complete, issues_detected, audit_failed. Use this to catch up at the start of a session ("did last night's scheduled audit run?", "what failed?") instead of polling every website. Each entry carries the category, the human-readable title and body, a data payload with the ids involved (website_id, run_id, report_id), and whether a human has read it in the dashboard. Filter with category, or unread_only to see just what nobody has looked at yet. Paginated with limit/offset. Read-only: this never marks anything read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max notifications to return (default 20, max 100). | |
| offset | No | Rows to skip (default 0). | |
| category | No | Restrict to these categories, e.g. ["audit_failed"]. Omit for every category. | |
| unread_only | No | Only notifications no one has read in the dashboard yet. |