getGrades

Gets all grades since the last sync.

Arguments

  • (lastSync) - Date

Returns

This method will return an array of Grade objects with all grades since the last sync.

Example

client.getGrades({lastSync}).then(grades => {
    grades.forEach(grade => {
        // grades
    })
})

Last updated

Was this helpful?