getStudents

Gets a list of students registered in the account.

Returns

A list of Student objects.

Example

client.getStudents().then(students => {
    students.forEach(student => {
        // students
    })
})

Last updated

Was this helpful?