platformOrgsTimeCountRetrieve method
Total time spent count on the platform within specified range or all time Query Params 1. start_date e.g 2020-10-01 2. end_date e.g 2020-10-10 Default result is all time
Parameters:
- String org (required):
Implementation
Future<void> platformOrgsTimeCountRetrieve(String org,) async {
final response = await platformOrgsTimeCountRetrieveWithHttpInfo(org,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}