Creates multiple rewards.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function bulkCreateRewards(
rewards: Array<Reward>,
): Promise<BulkCreateRewardsResponse>;
Rewards to create.
import { rewards } from "wix-loyalty.v2";
async function bulkCreateRewards(rewards) {
try {
const result = await rewards.bulkCreateRewards(rewards);
return result;
} catch (error) {
console.error(error);
// Handle the error
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.