platformOrgsCoursesProgressInProgressRetrieve method
In Progress means any unit completion in the past 30 days For platform : Total users who have atleast a course in_progress on the platform For course : Total users For learner : Total courses in progress Query Params 1. course_id
Parameters:
Implementation
Future<void> platformOrgsCoursesProgressInProgressRetrieve(String courseId, String org,) async {
final response = await platformOrgsCoursesProgressInProgressRetrieveWithHttpInfo(courseId, org,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}