credentialsOrgsCourseCredentialsList method
Endpoint to retrieve the credentials of a given tenant
Parameters:
Implementation
Future<void> credentialsOrgsCourseCredentialsList(String org, { int? limit, int? offset, }) async {
final response = await credentialsOrgsCourseCredentialsListWithHttpInfo(org, limit: limit, offset: offset, );
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}