Create apps using the Dev Dashboard
The Dev Dashboard provides a simplified interface for creating apps and integrating them with the Shopify admin. This makes it the best choice for quick integrations, such as connecting an existing system to Shopify.
Creating an app for the app store? Build using Shopify CLI instead.
Anchor to What you'll learnWhat you'll learn
In this tutorial, you'll learn how to do the following tasks:
- Create and configure a new app using the Dev Dashboard
- Install your app on a dev store
Anchor to RequirementsRequirements
- You're a user with app development permissions.
- You're using the latest version of Chrome or Firefox.
Anchor to Step 1: Create a new appStep 1: Create a new app
You can create a new Shopify app right from your Dev Dashboard.
- From the Dev Dashboard, be sure you're on Apps in the left-panel navigation and select Create app in the top, right corner of the screen.
- Select Start from Dev Dashboard.
- Name your app, then select Create.
Anchor to Step 2: Create a versionStep 2: Create a version
Once you've created the app, you can create a version. A version is a snapshot of your app's current configuration, URLs, and settings. Your app must have at least one version before it can be installed on a store.
From the Versions tab of your app in the Dev Dashboard, complete your desired fields, including:
- Defining your app URL. If your app isn't embedded in the Shopify admin, you can use the default URL
https://shopify.dev/apps/default-app-home. - Selecting a Webhooks API version (typically the newest version).
- Entering or selecting your app scopes. These define the data and features your app can access within the Shopify platform. Note that access to protected customer data or other sensitive information requires approval.
- Select Release.
Versions enable you to track changes to your app configuration over time and roll back to previous configurations if needed.
Anchor to Step 3: Install your appStep 3: Install your app
Complete the following steps to install your app on a store:
- From your app, select Home in the left-panel of the Dev Dashboard.
- Scroll down and select Install app.
- Select or create the store for your app.
- Select Install.
Your app is now installed. To start making API calls, you'll need to authenticate your app as described in the next step.
Anchor to Step 4: Authenticate your appStep 4: Authenticate your app
If you are creating an API-only app, without a Shopify admin interface, use the client credentials grant to obtain an access token.
Embedded app authentication is handled for you when you create an app using Shopify CLI.
Anchor to Next stepsNext steps
- Start building with the Admin API to read and write store data.
- Configure webhooks to receive real-time notifications about events in your store.
- Use the Dev Dashboard to monitor your app's performance.