catalogInvitationsProgramCreate method
POST Add a single invite to the database Params: program_key email active
Implementation
Future<void> catalogInvitationsProgramCreate() async {
final response = await catalogInvitationsProgramCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}