Create a Namespace for Your Blocks App

A namespace is a unique indicator of your app, in the format of:

Copy

The prefix is either your account name or your company name. The suffix usually indicates your app name.

You need a namespace to:

You don't need a namespace to:

  • Create widget-only apps with no backend or public code files, or collections.
Important:

Once you create a namespace you cannot change it.


Namespace prefix

There are two options for the prefix of your namespace. It can either start with your account name or with your company name.

Account name

Your account name is your Wix user name. If you are a Wix Partner, it's your Wix Partner account name. For this option, your namespace format is:

Copy

Company name

Your company name is defined in your Company Info in your app dashboard. Use this option if you plan to publish your app in the Wix App Market. For this option, your namespace format is:

Copy

Company name requirements for namespace

  • A company name that you put in your namespace must be unique in Wix. If someone used your company name and you think it might involve trademark infringement, please let us know.
  • Your namespace can only include latin letters and numbers. If your company name includes non-latin letters, you'll need to change it in the app dashboard to use it as the prefix of a namespace.
  • If you change your company name in the app dashboard, it will change the namespace of all future applications in your account.

Namespace suffix

You can change the suffix of your namespace as you wish. Just follow these requirements:

  • Use only lower-case letters, and numbers.
  • No special characters or spaces.
  • Must be unique within your account.

Using your namespace for collections

To use your namespace for a collection, add the collection name after the namespace. The path created is your collection ID.

Copy

To see your collection ID and copy it, click the three dots next to your collection name and then click Edit Settings.

Here is a code example that uses a collection ID. If you want to try out this example, note that the insert function requires allowing users to write to your collection. Go to your collection's Permissions & privacy to configure this.

Copy
See deprecated wix-data Velo example
Copy

Using your namespace to import functions in the editor

To import a public function from your app's code files in the editor, use this syntax:

Copy

For example:

Copy

To import from backend files, use this syntax:

Copy

For example:

Copy
Did this help?