platformOrgsCoursesProgressCompletedRetrieve method

Future<void> platformOrgsCoursesProgressCompletedRetrieve(
  1. String courseId,
  2. String org
)

For platform : Total users who have completed atleast a course on the platform For course : Total completions in course For learner : Total completed courses Query Params 1. course_id

Parameters:

Implementation

Future<void> platformOrgsCoursesProgressCompletedRetrieve(String courseId, String org,) async {
  final response = await platformOrgsCoursesProgressCompletedRetrieveWithHttpInfo(courseId, org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}