Your New Command Center: Inside Shopify’s Revamped Dev Dashboard

Discover how Shopify’s updated Dev Dashboard centralizes store management, collaborator access, and app health. Learn who it impacts, what’s changed, and actionable steps to start using it today.

Your New Command Center: Inside Shopify’s Revamped Dev Dashboard
5 sections

Shopify’s latest Developer Changelog introduces a major overhaul of the Dev Dashboard—a single hub where developers and merchants can manage stores, collaborators, and app health without juggling multiple tools. This post breaks down the new features, who they affect, and the exact steps you need to take to get the most out of this command center.

What’s New in the Dev Dashboard

The refreshed Dev Dashboard consolidates three core workflows into one UI:

  • Store Management – Quickly switch between stores you own or have access to, view basic store settings, and launch store‑specific tools without leaving the dashboard.
  • Collaborator Access – Invite, edit, or revoke collaborator permissions across all your apps and stores from a single screen. The UI now surfaces pending invitations, role breakdowns, and expiry dates at a glance.
  • App Health – Real‑time health indicators (API error rates, webhook failures, performance alerts) are displayed per app, letting you spot issues before they affect merchants.
  • All of these sections are reachable from the left‑hand navigation bar, and each tile offers a “quick‑action” button that drops you directly into the relevant settings page or API console.

    Who Is Affected?

    Developers – If you build public, custom, or private apps, you’ll now have a unified view of each app’s health metrics and collaborator roster. No more hopping between the Partners dashboard, the Admin API console, and separate store admin panels.

    Merchants (Store Owners) – While the primary audience is developers, store owners who grant collaborator access gain visibility into who’s working on their store and can monitor app performance directly from the dashboard, reducing reliance on developer‑only reports.

    How to Get Started Today

  • Log in to the Dev Dashboard – Navigate to https://partners.shopify.com and click “Dev Dashboard” in the top navigation. If you’ve never used it, you’ll see a brief onboarding tour.
  • Add or Review Store Access – Under “Store Management,” click “Add Store” to connect a new development store or request access to an existing merchant store. Existing connections show status icons (active, pending, expired).
  • Configure Collaborator Roles – Go to “Collaborator Access,” select an app or store, and use the “Invite Collaborator” button. Choose from predefined roles (Admin, Developer, Analyst) or create a custom permission set. Remember to set an expiration date for temporary contractors.
  • Monitor App Health – The “App Health” tab lists your apps with colored status badges (green = healthy, yellow = warnings, red = critical). Click an app to view detailed metrics: API error rate, webhook delivery success, average response time, and recent alerts.
  • Set Up Automated Alerts – Within an app’s health view, toggle “Email me when health drops below X%” or integrate with Slack via the built‑in webhook connector. This ensures you’re notified the moment something goes wrong.
  • Sample Code: Pulling App Health via the Admin API

    While the UI surfaces health data, you can also fetch it programmatically using the Admin GraphQL API. Below is a concise query you can run in the GraphQL Explorer or from your server:

    graphql

    query AppHealth($appId: ID!) {

    app(id: $appId) {

    name

    health {

    status

    errorRate

    webhookDeliverySuccessRate

    averageResponseTimeMs

    recentAlerts {

    message

    createdAt

    }

    }

    }

    }

    Replace $appId with the numeric ID of your app (found in the Dev Dashboard URL). The response mirrors the UI badges, allowing you to build custom dashboards or trigger CI/CD gates based on health thresholds.

    Conclusion

    Shopify’s revamped Dev Dashboard is more than a visual facelift—it’s a productivity engine that brings store management, collaborator oversight, and app health monitoring under one roof. By following the quick‑start steps above, developers can reduce context‑switching, merchants can gain clearer visibility into who’s working on their store, and both parties can act faster when performance issues arise. Dive in today, set up your alerts, and let the new command center keep your Shopify ecosystem running smoothly.

    Tags
    Sources

    Related Articles

    Why Return Shipping Fees Are Now Taxed in the US – What Shopify Merchants Need to Know

    Why Return Shipping Fees Are Now Taxed in the US – What Shopify Merchants Need to Know

    Starting Oct 23 2026, Shopify Tax will automatically apply sales tax to return shipping fees for US orders. Learn who’s affected, how the calculation works, and the exact steps merchants and developers must take to stay compliant.

    September 25, 20266 min
    Filterable Logs & Health Metrics Now Live in the Shopify Developer Dashboard

    Filterable Logs & Health Metrics Now Live in the Shopify Developer Dashboard

    Shopify’s latest update adds a filterable stream of logs and health metrics for custom apps directly in the Developer Dashboard, giving developers and merchants instant visibility into API usage, webhook health, and page performance.

    September 25, 20265 min
    Understanding the New CURRENCY_CONVERSION Type in Shopify Payments Balance Transactions

    Understanding the New CURRENCY_CONVERSION Type in Shopify Payments Balance Transactions

    Shopify’s GraphQL Admin API now includes a CURRENCY_CONVERSION transaction type, letting developers fetch detailed conversion data directly from balance transactions. Learn what changed, who it affects, and how to adapt your integrations.

    September 25, 20264 min
    Polaris 2.0 Release Candidate: What Shopify Developers Need to Know

    Polaris 2.0 Release Candidate: What Shopify Developers Need to Know

    The Polaris 2.0 release candidate lets embedded apps match Shopify’s new admin design. Learn what changed, who’s impacted, and how to adopt the new visual style before the rollout becomes mandatory.

    September 24, 20265 min