When an app is installed on a Wix site, the app may need to access and manage some of the site's data. To enable this, the site builder must grant the required permission scopes to the app when installing it. The app permissions are specific to the APIs that you use in your app.
If your app is already installed on user sites, add permissions with caution. First, test your app on your own site. Then release a major version for user sites.
Adding permissions is required in the following cases:
You do not need permissions in the following cases:
wix-widget
and wix-editor
modules.wix-dashboard
module.If your app requires permissions, but you haven't added them, site builders won't be able to provide consent, causing your code to fail.
While everything might seem fine in Blocks (the release process won't fail), once the app is installed on a site, the site will show an error and the console will say that an API failed.
Follow these steps to make sure you have added the required permissions. Each step is only needed if the previous one wasn't successful.
Check the Velo reference: In most cases, if an API requires permissions, you will see it in the Velo reference, under the Permissions
section.
For example, the bulkCreateBooking()
function requires the following permissions:
MANAGE BOOKINGS
MANAGE BOOKINGS - ALL PERMISSIONS
You can click the permission to add it to your app.
Check the legacy list: If no permissions are specified in the API reference, check if it's included in the Velo legacy APIs permissions list.
No permissions needed: Only if the API you are using has no permissions specified in the Velo reference and doesn't appear in the legacy list, you can assume that no permissions are needed.
You can add permissions in several ways: