Hi experts,
I’m trying to use the wixdata.bulkUpdate, but getting error: collection name must contain only alphanumeric characters, underscores and dashes and have a maximum length of 36 characters. Help
import wixData from ‘wix-data’;
export async function post_getorders(request) {
let requestBody = await request.body.json();
let optionsData = {“suppressAuth”: true };
let arrayUpdates = requestBody.updates;
let results = await wixData.bulkUpdate(“Stores/Orders”, arrayUpdates, optionsData);
…
}
Thank you,
Peter