We're gradually releasing the new Administration View app feature, which allows Enterprise accounts to create apps that can only be accessed by account admins.

Whether you're building an internal app or one for the marketplace, the Administration View is ideal for creating tools that help admins manage, optimize, and monitor account-level activity across the organization.

These apps are great for things like bulk actions or updates, audit log visualization, board activity tracking, or user engagement insights. You can also build product-specific features for monday CRM, Dev, or Service.

👉 Check out the documentation here!

Administration View apps in the Admin section

Administration View apps in the Admin section

To improve performance, stability, and fair usage, we're now enforcing the running instance limits for monday code. These limits were previously in gradual rollout and are now active for all monday code apps.

The running instance limit restricts the number of minutes an app can run per day. It is dynamic and depends on:

  • The type of app (private, public, or marketplace)
  • The number of seats the app is installed on across all accounts

📘 Learn more about how limits are calculated, and be sure to optimize your app’s logic accordingly!

You can now open a modal from within another modal and return users to the original modal using the new returnToPreviousModal parameter in the openAppFeatureModal SDK method.

monday.execute("openAppFeatureModal", {
  urlPath: "/settings/profile",
  urlParams: { tab: "notifications" },
  width: "600px",
  height: "400px",
  returnToPreviousModal: true
}).then((res) => {
  // only triggered when a user closes the dialog
  console.log('Dialog closed. ', res.data);
  // note that `res.data.closed` is always true
});

The new monday code scheduler allows you to schedule cron jobs that automatically execute on a defined schedule (e.g., every week at 10 AM). This is ideal for automating recurring operations, such as backing up the database at midnight or generating reports every Friday at 5 PM.

To get started, simply create an endpoint in your backend that performs your desired logic, configure the job using our CLI, and our scheduler will handle the execution for you.

Check out our documentation for all the details, including multi-region support and how to develop, test, and deploy these scheduled endpoints using the new CLI commands!

We’ve upgraded monday’s OAuth flow to prevent admins from getting stuck when an app hasn't been installed yet. This update helps boost conversion rates, reduce support, and get customers connected to your app faster.

By adding the query parameter force_install_if_needed=true to your authorization-request redirect URL, monday will automatically:

  • Detect when the app isn’t installed
  • Prompt the admin to install it
  • Continue to the OAuth consent step once installation is complete

Note: An admin must still manually install the app since automated installation requests aren't yet supported. Be sure to update your UI or messaging accordingly (e.g., “Ask an admin to install the app first”).

Example request

GET https://auth.monday.com/oauth2/authorize  
  ?client_id=<YOUR_CLIENT_ID>  
  &redirect_uri=https://yourapp.com/oauth/callback  
  &scope=  
  &state=<CSRF_TOKEN>  
  &force_install_if_needed=true

Next steps

  1. Add force_install_if_needed=true to your authorization redirect URL.
  2. Test the flow on an account where the app isn't installed yet.
  3. Update any setup guides, tooltips, or in-app copy to reflect the simplified flow. Remember to clarify that the admin installation is still required!

You can now manage user tokens and credentials for monday workflows using the new credentials app feature. This makes it easy to connect to third-party services with minimal code. The framework takes care of authentication flows and credential storage, so you can focus on building flexible, user-friendly solutions.

👉 Learn more about the credentials app feature here!

As part of our ongoing Disaster Recovery project, we will be performing scheduled maintenance on Sunday, June 8, 3:00-5:00 am EST | 9:00-11:00 am CET, which will result in approximately 2 hours of downtime for secure storage on monday code.

This maintenance is necessary to migrate our Disaster Recovery setup to a multi-region infrastructure. This upgrade will help us:

  • Reduce downtime in the event of disasters
  • Resume normal operations more quickly
  • Ensure business continuity for your apps
  • Align monday code with enterprise-grade standards

You can stay updated on the monday status page!

With the new async action feature, you can run workflow builder action blocks asynchronously—freeing up time to perform complex operations, prevent duplication, avoid unnecessary retries, and improve visibility into your workflows. Learn more about asynchronous action blocks here!

We've updated the security and compliance questionnaire with new questions that highlight key security insights. These will help you build trust and improve visibility on your app's listing page.

If you've submitted it before, we recommend updating your responses by submitting a new questionnaire. If not, now's a great time to fill it out for the first time! Learn how here.