list_children
Retrieve enrolled children, optionally filtered by school ID, with support for pagination via limit and offset parameters.
Instructions
List children enrolled, optionally filtered by school.
Use when: "show me all children at school 1234" or "list the next 50
children across all schools." Combine with offset for pagination.
Args: school_id: restrict to one school within the enterprise account. limit: max records to return (server-side cap applies). offset: skip N records for pagination.
Example: list_children(school_id="abc-123", limit=20) returns
[{"id": "...", "first_name": "...", "last_name": "...", ...}, ...].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| school_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |