This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
The bulkCreateRules()
function returns a Promise that resolves to the created rules.
To create only one rule, use the createRule()
function.
function bulkCreateRules(
rules: Array<Rule>,
options: BulkCreateRulesOptions,
): Promise<BulkCreateRulesResponse>;
Rules to create.
import { serviceFees } from "@wix/restaurants";
async function bulkCreateRules(rules, options) {
const response = await serviceFees.bulkCreateRules(rules, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.