catalogIncrementCreate method
POST Update auto increment information and retrieve a new ID. Params: org: Platform org key: Platform key number_type: Type of number requested (course, program)
Implementation
Future<void> catalogIncrementCreate() async {
final response = await catalogIncrementCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}