list_quizzes
Retrieve quizzes in an organization filtered by exact name or updated-after timestamp; use cursor pagination to continue until no more pages remain.
Instructions
Find quizzes in this organization, by name or by when they last changed.
Returns ONE PAGE. Check `has_more` - if it is true there are more quizzes than
you can see, and you must call again with `next_cursor` before telling the user
how many exist or that one is absent.
`filter_name` is an EXACT match, case-insensitive - a partial name returns
nothing. `filter_updated_since` needs an ISO-8601 timestamp WITH a timezone
offset; a naive one is rejected.
Returns settings only, not questions - use `list_questions` with `filter_quiz_id`
for those. Requires the `quizzes:read` OAuth scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | ||
| filter_name | No | ||
| page_cursor | No | ||
| filter_updated_since | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| quizzes | Yes | ||
| has_more | Yes | ||
| next_cursor | No |