Good Morning
Using the Analytics API
https://canvas.instructure.com/doc/api/analytics.html#method.analytics_api.course_assignments
Specifically this endpoint "Get user-in-a-course-level assignment data"
GET /api/v1/courses/:course_id/analytics/users/:student_id/assignments
Returns the payload as expected but also included a value called "status" that includes values like Missing, Late, On_Time and Floating.
Most of these values make sense given the context, but I don't know what to make of the Floating status. It makes up more than half of the data returned for my few test courses.
Does anyone know what Floating means? Does anyone know where to see docs that explain what all the values returned for status in this context mean?
Here's an example
{
"assignment_id": 15364669,
"title": "Networking Essentials",
"unlock_at": null,
"points_possible": 1.0,
"non_digital_submission": false,
"multiple_due_dates": false,
"due_at": null,
"status": "floating",
"muted": false,
"max_score": 1.0,
"min_score": 1.0,
"first_quartile": 1.0,
"median": 1.0,
"third_quartile": 1.0,
"module_ids": [
4772468,
4772470
],
"excused": false,
"submission": {
"posted_at": null,
"score": null,
"submitted_at": null
}
},
Thanks <Glen