IntegrationsApp Registry

App Registry

The App Registry is the marketplace backend behind installable Storentia apps — think of it as the App Store side of the platform, separate from the storefront API.

What it is

A multi-tenant registry service with three contexts: public (browsing), store (installing/managing apps for one store), and admin (publishing apps and categories). Store credentials submitted during installation are encrypted at rest with AES-256-GCM.

Public API

  • GET /v1/public/apps — list published applications
  • GET /v1/public/apps/:id — app detail
  • GET /v1/public/categories — list categories

Store API

Authenticated — manage installations for a store you own:

  • GET /v1/store/installations — list installed apps
  • POST /v1/store/installations — install an app
  • POST /v1/store/installations/:id/credentials — configure encrypted credentials
  • PATCH /v1/store/installations/:id/toggle — enable/disable
  • DELETE /v1/store/installations/:id — uninstall