Embed Integry Apps Marketplace

In this guide, we will use the Integry.JS SDK to enable users to connect apps and setup/run integrations with those apps from your SaaS application.

Before you proceed, please sign up for a free trial (if you haven't).

Set up the SDK

Follow the steps here.

Show apps

Your users need a way to discover and connect apps.

Show Apps in the Integry marketplace

Call the showApps() method to easily show apps in a marketplace-style list view. You can configure the layout and customize the styling.

Your users will simply click an app to connect. If the app has Flows, they will then be able to setup/run those flows.

Show apps in your own marketplace

If you prefer, you can use Integry to add more apps to an existing list in your app.

Listen to events (optional)

Integration created

If you are going to send data from your app to another app, you will need to capture (and store) the unique callback URL for the user's integration so you can trigger it from your app.

Subscribe to the integration-created event and get the callbackURL. This event will fire after your user creates an integration. It will not fire if they edit an existing integration.

integry.eventEmitter.on('integration-created', (data) => {
    console.log("Callback URL: " + data.callbackUrl);
});

Last updated

Was this helpful?