catalogSearchProgramsCreate method
POST Retrieve programs matching query. Params: query --- org
Implementation
Future<void> catalogSearchProgramsCreate() async {
final response = await catalogSearchProgramsCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}