list_students
Find registered learners by name or exact email, filter inactive accounts, and paginate through results to verify enrollment or locate a student.
Instructions
Find learners registered with this organization.
Returns ONE PAGE. Check `has_more` and call again with `next_cursor` before
telling the user a total or that somebody is not registered.
`filter_email` is an EXACT match, case-insensitive - a partial address returns
nothing, so use it to confirm a known address rather than to search.
`filter_is_inactive` selects deactivated learners; omit it for both.
Results contain real names and email addresses. Requires the `students:read`
OAuth scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page_size | No | ||
| page_cursor | No | ||
| filter_email | No | ||
| filter_last_name | No | ||
| filter_first_name | No | ||
| filter_is_inactive | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| has_more | Yes | ||
| students | Yes | ||
| next_cursor | No |