list_alert_notes
Retrieve notes attached to an alert to see who is handling it and what actions were taken. Page through user and system entries with timestamps and user names.
Instructions
[READ] List the notes on one alert — who is handling it and what was done. Each row: id, note text, type (USER or SYSTEM), user_name, user_id, created_time_ms.
Use add_alert_note to record a new one. An unknown alert id is an error (HTTP 404), not an empty list.
Returns a paginated envelope: items, returned, limit, total (null when the API reports no size), truncated, hint, next_offset, and notes_note — null when the answer was read; otherwise items is UNKNOWN, not empty, and must not be reported as "no notes".
Page it: limit is the page size (1-500; 0, negatives and anything above 500 are rejected, not clamped), offset is how many rows to skip, and next_offset is the offset of the next page — pass it back as offset and stop when it is null. Do not loop on truncated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size, 1-500 (default 100). Out-of-range is rejected. | |
| offset | No | Notes to skip; pass the previous response's next_offset. | |
| target | No | Aria target name from config; default when omitted. | |
| alert_id | Yes | The alert UUID from list_alerts (not the resource UUID). |