This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Sets settings.collectionStates.collectingRequests
to false
for given appId
.
When the collection state is set to false
, collecting notification requests is disabled.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function stopCollectingRequests(
appId: string,
): Promise<StopCollectingRequestsResponse>;
ID of the app to stop accepting notification requests for.
import { backInStockSettings } from "wix-ecom-backend";
async function stopCollectingRequests(appId) {
try {
const result = await backInStockSettings.stopCollectingRequests(appId);
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.