platformOrgsProgressInProgressRetrieve method

Future<void> platformOrgsProgressInProgressRetrieve(
  1. String org
)

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> platformOrgsProgressInProgressRetrieve(String org,) async {
  final response = await platformOrgsProgressInProgressRetrieveWithHttpInfo(org,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}