Skip to main content

Using the CLI, you'll migrate an existing production public app to the projects framework. App features that are supported by projects, such as auth configuration and webhooks, will be included automatically in the migration. Features not supported by projects, such as custom workflow actions and timeline events, can be configured through the app settings UI or API as before.

This guide assumes that you meet the following criteria:

  • You have an existing public app that has not yet been converted to the developer projects framework.

  • You are ready to migrate your public app to the developer projects framework, enabling the creation of UI extensions for your app. If you want to start with a dry run of the migration, you can instead make a copy of your app in a project by running hs project clone-app.

  • You have set up your local environment for project development and set your developer account as the default in the CLI.

    • To view your connected accounts, run hs accounts list in the terminal. The terminal will list all currently connected accounts, along with the default.

      cli-default-account

    • If your developer account is connected but not the default, run hs accounts use <accountName>.

    • If you haven't connected your developer account to the CLI yet, revisit the setup guide.

To begin migration, you'll switch your public app to be configured using projects. This process will preserve the original auth credentials, and all other existing app features, App Marketplace listings, and app installs. No changes are required in your app backend, and customers will not experience any interruptions in service.

  • Ensure you've installed the latest version (v6.1.0 or greater) of the HubSpot CLI by running npm i -g @hubspot/cli@latest.
  • With your developer account connected to the CLI and set as the default, run hs project migrate-app.
  • Select the public app that you'd like to migrate. This will create a new project containing a single public app component that represents the current state of your app.

cli-migrate-app-selection (1)

  • Enter a name and local path for your project, then press Enter. The terminal will then display a message to outline the migration process and confirm your intention to convert the app.

hs-project-migrate-cli-confirm

  • Press Enter to confirm that you're ready to proceed with migration.
  • The migration process will then begin, and the terminal will display the migration status. The migration includes:
    • Creating the project in your app developer account.
    • Converting the project-supported features of the app to source code files, which you can use int he future to update feature configuration.
    • Building and deploying the new project (Build #1), which completes the association between the public app and its project. This will preserve the original auth credentials, all app features, App Marketplace listing, and installs.
    • Downloading the new project source files to the specified local directory.

With build #1 succeeded, you'll now have captured your original app's configuration state. As you continue to build your app and UI extensions, you can always safely revert to this state by redeploying build #1 by running the hs project deploy --buildId=1 command.

Before you can begin UI extension development and run a local development server, deploy the successful build by running hs project deploy.

With the app successfully migrated, you can now update the public app with app cards.

After the migration is complete, you can add UI extensions to it to customize the HubSpot UI with app cards, along with any other required app feature definition changes from your local development project to the new project-based public app. For guidance around building UI extensions, you can:

While developing a UI extension, you can start a local development server to see your changes in the browser in real-time without needing to upload. To enable local development:

If your app is not listed in the App Marketplace, you can begin developing the new app card functionality without needing to set any feature flags on your account. If you do want to selectively control which accounts can access your app's new cards, you can use the feature flag API to control each account's flagState.

If your app is listed in the App Marketplace, learn more about the development workflow for listed apps.

  • Continue building out your UI extension. The local development server will pick up any changes saved in the React extension file. If you make any changes to non-React files, such as the .json config files, you'll need to end the server and run the hs project upload command.
  • When you're satisfied with your changes, upload and build the project by running hs project upload.
  • Deploy all updates by running hs project deploy, or through the project management UI in HubSpot.

If your app is listed in the App Marketplace, your migrated app will automatically have a feature flag enabled that controls access to app cards in the accounts where the app is installed. You'll need to use the feature flag API to selectively enable accounts to use the new app cards. By default, app cards for listed public apps are restricted to a maximum of five accounts.

To start developing new app cards without impacting production accounts, first create a test account within your developer account if you haven't done so yet. Then, using your developer account's developer API key, set your test account's feature flag to ON by making a request to the feature flag API.

With your test account feature flag configured, you'll be able to view new app cards in HubSpot as you develop your UI extensions.

  • Select your developer test account, then press Enter. The terminal will update with a message displaying the status of the development server. You can press q at any time to end the server.
  • When you're satisfied with your updates, upload your changes to your developer account.
  • When the build succeeds, deploy your changes by running hs project deploy.

You can continue testing your app and its new cards in additional accounts by using the feature flag API to set the flagState to ON, as shown in the first step above. You can enable this flag for up to five accounts, including beta customers.

Once you've sufficiently tested your updated app, you'll need to submit it for review by emailing the following required information to app-card-review@hubspot.com:

  • Production app ID
  • Build ID
  • Hub ID of your developer account
  • Hub ID of the test account where the app is installed
  • Credentials or access to any third-party platform necessary to test the app card, if applicable
  • Demo video or detailed instructions of how users will interact with the card (such as a quick Loom)
  • Additional context or details HubSpot might need that aren't covered by the above

After submitting your app for review, invite app-card-review@hubspot.com as a user to your test account where the app is installed. Grant this user all the permissions necessary to fully test your app cards (for simplicity, Super Admin is recommended). A member of the review team will then test your app card and provide feedback if changes are needed. You'll continue to work with app-card-review@hubspot.com to address provided feedback until all additional app card criteria are met.

Once your app is approved, you can begin distributing it in the App Marketplace, and you will not need to resubmit it for approval when making future changes.

After receiving approval for unlimited distribution from the App Card marketplace review process, your app will be ready for distribution. Before proceeding with app distribution, it's recommended to consider the following:

To help users migrate to your new cards, HubSpot includes a default update state that you can apply to your classic cards. This update includes messaging to indicate that the card has available updates.

For account admins, a link to the app's settings page will be included. Non-admin users will see similar messaging, but will be guided to contact their account admin to assist with setup.

Admin viewNon-admin view
super-admin-card-migration-viewnon-super-admin-card-migration-view

To add this state to your classic cards, include "showMigrationMessage": "true" in the card's JSON response. This should be included at the top-level of the response.

Alternatively, you can build your own custom update state by manually updating the card's JSON response directly, or even using the feature flag API for conditional responses.

With the default update state enabled for your classic cards, their content will be replaced, and you can walk through what the end-user experience will be for super admins who want to upgrade to your new cards:

  • In the test account, navigate to a CRM record that contains your classic card.

  • On the CRM record, locate the card, then click the Set up now link to navigate to the app settings page.

    app-card-update-card

  • The app settings page will display all available cards. Click the link provided for each card to navigate to the customization page for that object.

app-settings-page

  • Users can then proceed to customize their record pages as needed. They can find your new cards within the Apps section of the customization sidebar.

customize-ui-card-added

  • After adding the new card, the old card can be removed by locating it in the view editor then clicking Remove. Alternatively, you can hide the old card from the account using the feature flag API.

    remove-card-from-sidebar

Learn more about the card updating user experience on HubSpot's Knowledge Base.

Using the feature flag API, you can gradually roll out your app in two ways:

To roll out your app cards to new installs only, you'll use the feature flag API to turn off the hs-release-app-cards feature flag for all existing installs. Then, you'll switch the flag's state to ON so that new installs have the flag enabled by default.

  • For the first request, set the flagState to OFF for all accounts that currently have the app installed. You'll need to gather the portalId for all existing installed accounts, then make a POST request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards/portals/batch/upsert?hapikey={developerAPIKey}.
  • With existing app installs set to OFF, you can now set the defaultState to ON. To do so, make a PUT request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards?hapikey={developerAPIKey}
  • Once you feel confident in new customer adoption, you can begin to remove customer portalIds that you switched to the OFF state by making a POST request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards/portals/batch/delete?hapikey={developerAPIKey} with the account IDs you want to remove from the OFF list.
  • When all previously added accounts have been deleted using the above endpoint, you''ll have successfully completed the rollout and finished migration. At this point, you can safely delete your feature flag by making a DELETE request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards?hapikey={developerAPIKey}.

Alternatively, rather than starting with new installs, you can selectively enable your app cards for a subset of accounts that have your app installed. To do so, you'll need to have a list of the account IDs for all existing public app installs. With that list, you can make a POST request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards/portals/batch/upsert?hapikey={developerAPIKey} and set their flagState to ON.

You can continue making this request for subsets of accounts until all accounts have been migrated. Then, you can delete your feature flag by making a DELETE request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards?hapikey={developerAPIKey}.

To release your app cards to all installed accounts simultaneously, delete the app's feature flag by making a DELETE request to https://api.hubapi.com/feature-flags/v3/{appId}/flags/hs-release-app-cards?hapikey={developerAPIKey}.

In addition to using the feature flags API to roll out app cards to your install base, you can also use it to facilitate the removal of classic CRM cards by setting the hs-hide-crm-cards flag. For example, for existing installs, you may want to continue showing the old cards to remind users to upgrade to your new cards, but then hide them from new installs and accounts that have upgraded.

To use the hs-hide-crm-cards flag to manage classic CRM card access:

  • Make a request to set your app's defaultState to OFF. This initializes the app flag and ensures that the app's classic CRM cards will be visible in every existing and new installed account.
  • Next, set the flagState to OFF for all accounts that currently have the app installed. In the request body, you'll provide a portalId for each account.
  • With existing app installs set to OFF, make another request to set the defaultState to ON. This prevents new installs from ever seeing the app's classic CRM cards.
  • As you observe customers using the new app cards, such as receiving hubspot.fetch() calls from their accounts, you can remove them from the hs-hide-crm-cards flag list using the request below. Because you hid the classic CRM cards from new installs, you'll only need to take this step for accounts you previously set to OFF.
  • When all previously added accounts have been removed from the flag list, you can be sure that your entire install base can no longer access the old classic CRM cards. At this point, you can navigate to the app's settings page in your developer account and delete the classic CRM cards.

delete-a-classic-crm-card-from-within-app-settings

  • Finally, make a request to delete the hs-hide-crm-cards flag from the app.

Use the feature flag API to control availability of your app cards in customer accounts. All endpoints are under the https://api.hubapi.com/feature-flags/v3/{appId} root path. The API currently supports a single App Flag: hs-release-app-cards. Attempts to specify other App Flags will receive an error.