We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 411ee00 commit 91408a5Copy full SHA for 91408a5
1 file changed
docs/sample.yaml
@@ -2853,9 +2853,24 @@ paths:
2853
type: string
2854
example: Internal server error
2855
2856
- /admin/ideas:
+ /admin/ideas?limit={limit}&cursor={cursor}:
2857
get:
2858
summary: Get all ideas
2859
+ parameters:
2860
+ - name: limit
2861
+ in: query
2862
+ description: The number of ideas to fetch. Required for the first request.
2863
+ required: false
2864
+ schema:
2865
+ type: integer
2866
+ example: 10
2867
+ - name: cursor
2868
2869
+ description: The Base64-encoded cursor representing the last user ID from the previous page.
2870
2871
2872
+ type: string
2873
+ example: "550e8400-e29b-41d4-a716-446655440000"
2874
tags:
2875
- Admin
2876
description: Fetches all submitted ideas.
0 commit comments