catalogPathwaysCreate method
POST Add or update a pathway. Params: pathway_id user_id name slug visible path: Array of dict with course_id keys {'course_id': 'course-v1:A+B+C'}
Implementation
Future<void> catalogPathwaysCreate() async {
final response = await catalogPathwaysCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}