catalogInvitationsProgramBulkCreate method
POST Add invites to the database Params: program_key source count
Implementation
Future<void> catalogInvitationsProgramBulkCreate() async {
final response = await catalogInvitationsProgramBulkCreateWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}