LogoLogo
HOMEAPPSBLOGDEVELOPERSGET A DEMO
  • Overview
    • Data
    • Middle's infrastructure
    • ENTERPRISE installations
    • Security
  • Workflows
    • Enable/disable an account
    • Connect or edit an app connection
    • Sync
      • Stored records
      • Sync history
    • Create or copy a workflow
    • Edit an existing workflow
    • Workflow steps
    • Workflow parameters
    • Triggers
  • User access
  • Performance
  • Data deletion
  • App development
    • Authentication
    • Credential storage
    • Sync records
    • Actions
    • Code packages
    • Upload scripts
    • Testing your apps
    • Versions
    • Monitor
  • Getting app credentials
    • ABC Ignite
    • Amazon S3
    • Clover
    • Emma
    • Erply
    • Facebook
    • fitDEGREE
    • Gmail
    • Google Sheets
    • HighLevel
    • Hubspot
    • Keap Max
    • Klaviyo
    • Lightspeed Retail
    • Mailchimp
    • Mindbody
    • OpenAI
    • Paramount Acceptance
    • Pike13
    • Salesforce
    • Shopify
    • Slack
    • Square
    • Vend
    • Xn
  • Guides
    • API limits
    • Building an API for Middle
    • Development best practices
Powered by GitBook
On this page
  • Elements of an app
  • The steps of app development
  • Creating a new app
  • Configure App Settings

Was this helpful?

App development

Create new apps and fork existing ones in Middle's developer portal

PreviousData deletionNextAuthentication

Last updated 5 months ago

Was this helpful?

Apps allow you to sync and perform . ENTERPRISE customers can create and edit apps all within Middle's developer dashboard. Since all Middle integration code is open-sourced, you are able to review the code powering your Middle instance's apps. All apps are coded in Python.

Apps are managed on an basis. That means that if you add an app to your Middle installation it will only be visible to you unless you'd like it to be publicly available to others.

To access your instance’s apps, click the Apps tab.

This tab will show all installed apps that currently exist in your Middle instance. This dashboard will also allow you to create or upload an app.

Elements of an app

There are four main elements to a Middle app:

The steps of app development

There are seven steps to building a new app:

  1. Create a new app

  2. Configure app settings

  3. Configure authentication (authorization)

  4. Create record types and poll syncs (inputs)

  5. Create actions (outputs)

  6. (Optional) upload code packages or helper functions

  7. Test your app

Creating a new app

To integrate with a system that is not already available on the platform, you must create a new app on your Middle instance.

To create a new app, click + Create an app in your app portal.

This will create a new app and bring you to the new app's dashboard.

Once your app is in use, this dashboard will begin to report metrics about worker queues and sync attempts. It will also contain a Download button to download a zipped JSON copy of your app, which can be generated using the Regenerate button.

Configure App Settings

First, you will need to configure the app’s settings.

If you plan to make your new app public, it is important for people to understand the purpose of the app, the system it's integrating to, and any important notes for developers who may need to work with the app in the future.

To configure your app's settings, click Settings from the left-hand navigation menu.

There are two levels of app visibility: hidden, and public. Turning this toggle on will make this app visible for Accounts to connect to.

You will also be able to name your app, provide app descriptions, and add any important notes about the platform you are integrating with. Here's an example of what these fields could look like for our new app: "CoolNewApp."

Once you have filled out your app's settings, click Save.

defines what's needed for an app to work and gain authorization to access the systems you are integrating with

are data synced into Middle, I.E. Middle's inputs

are typically Middle's "Outputs": how data flows out of Middle

are referencable by your record sync and action code to open libraries, use functions, etc., and not have to repeatedly embed this in your code

Authentication
Record types
Actions
Code packages
records
actions
instance-by-instance
Your Middle instance's menu bar
Click to create a new app
An app's dashboard
Set a toggle to make an app visible to all accounts
Cosmetic settings for your new app