create_students
Register multiple learners in one batch operation using their email addresses. Duplicate addresses in the same call are ignored after the first occurrence, preventing accidental duplicate accounts.
Instructions
Register one or more learners. This is a BATCH operation.
Pass `students`, a list of items each needing an `email` (required, lowercased
on save). `first_name` and `last_name` are optional, max 50 characters each.
Within one call the FIRST occurrence of an address wins; a later duplicate is
reported rather than creating a second account.
Registering an account does not enrol anyone in anything - use
`bulk_enroll_students` for that.
Requires the `students:write` OAuth scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| students | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | ||
| note | Yes | ||
| total | Yes | ||
| failed | Yes | ||
| succeeded | Yes |