reddit_feedback_list
List sent feedback reports to recover a lost ID, confirm delivery, or check status. Filter by type or status and page with cursor.
Instructions
List the feedback reports this account has sent, newest first, with each one's current status. Use it to RECOVER A LOST ID: the server id is returned only once, when a report is sent, so this is the way back to a report whose id was not kept. Also the way to answer "did that report actually land" and "has the team looked at it yet". Optionally filter by status or type, and page with the cursor from a previous response. Free per call, never metered. Returns {feedback: [...], count, limit, next_cursor}; page by passing next_cursor back as cursor until it is null; an account that has filed nothing gets an empty list and a 200, not an error. Note this lists SENT reports on the server, which is different from reddit_feedback_send action="list", which shows unsent local drafts on this machine.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Optional. Show only reports of this kind. Omit for all of them. | |
| limit | No | Optional. How many to return, 1 to 100 (default 25). Newest first. | |
| cursor | No | Optional. The next_cursor from a previous response, to fetch the page after it. Keyset paging on (created_at, id), so a report filed while you page cannot make a row repeat or be skipped. A cursor this endpoint did not issue is a 400, never an empty page. | |
| status | No | Optional. Show only reports in this state. Omit for all of them. |