ZuploZuplo
LoginStart for Free
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop in the portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
    Develop locally with the CLI
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
Concepts
Development
Policies
Handlers
API Keys
Rate Limiting
Caching
MCP Server
MCP Gateway
AI Gateway
    IntroductionGetting StartedSource ControlUniversal API
    Providers
    Teams
    Apps
      OverviewManaging AppsPolicy ChainsCustom PoliciesFallbacksUsage Limits
    Policies
    Cookbooks
    Integrations
Developer Portal
Monetization
GraphQL
Deploying & Source Control
Analytics
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsVersion Support PolicySecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Apps

Managing Apps

An app represents one caller of your AI Gateway—a service, an agent, or a feature in a larger codebase. Each app has its own API key, which the gateway checks once you add the authentication policy; usage is tracked per app whether or not that policy applies. Each app belongs to a team, which controls who can access and manage the app. Provider access is governed separately by the user's Zuplo account and Zuplo project roles. A Zuplo account contains one or more projects; this AI Gateway and its providers, teams, and apps belong to one Zuplo project. See Role Permissions.

App permissions

A team Admin can create, edit, and delete apps owned by that team. A team Member can access the team's apps but can't manage them. Both roles require permission to view the Zuplo project that contains the AI Gateway.

Creating an App

  1. Open the Apps & Teams tab of your AI Gateway project in the Zuplo Portal.

  2. Select the team that will own the app, then click Create App in the team's header. An app always belongs to a team, so the tree's own create action is New Team.

  3. Enter the App name.

  4. Confirm the Team—it's prefilled with the team you started from.

  5. Click Create app

That's the whole dialog. The portal then takes you to the app's Policies tab. If the app's team defines a policy template, the new app starts with that chain; otherwise the chain is empty and the app is unrestricted until you add policies.

Restricting models

By default an app isn't restricted to particular models: any model available through the providers configured for the Zuplo project is accepted. An unrestricted app has no default model, so every request must name one as providerName/model. A request with no model, or a model without that prefix, gets a 400.

To limit an app to specific models, add the Model Filtering policy to the app's policy chain—models are controlled by that policy, not by the app's settings. Open the app's Policies tab, add Model Filtering, and configure each capability (completions, embeddings) in one of two modes:

  • An allow list exposes a curated set of models. Only listed models are accepted, and the first entry is the default when a request doesn't specify a model.
  • A block list permits every available model except the ones named. Each request must name its model, because a block list supplies no default.

The two modes are mutually exclusive per capability: a capability takes an allow list or a block list, never both.

RequestResponse
A model the rules don't allow403, listing what's allowed
No model named, with no allow list to supply a default400
A model with no providerName/ prefix400
A capability the policy doesn't configure at all403
A provider name that isn't in the Zuplo project's provider catalog400

When model selection needs logic instead of a list, a custom policy can take over—see Dynamic model routing.

Setting budgets

App budgets live on the Budgets and Costs policy in the app's chain. Open the app's Policies tab and configure it with daily or monthly limits for spending, tokens, or requests. If you don't set app limits, the team's and gateway's limits still apply. See Usage Limits.

Editing an App

To edit an app, open the Apps & Teams tab of your AI Gateway project in the Zuplo Portal. Select the app you want to edit. The app's behavior—models, budgets, caching, guardrails—is edited on the Policies tab; the app's name lives on the Settings tab. Make your changes and click the Save button. Policy chain changes apply within about a minute.

Deleting an App

To delete an app, open the Apps & Teams tab of your AI Gateway project in the Zuplo Portal. Select the app you want to delete, open its Settings tab, and click the Delete App button. You will be prompted to confirm the deletion.

Edit this page
Last modified on August 11, 2026
OverviewPolicy Chains
On this page
  • Creating an App
  • Restricting models
  • Setting budgets
  • Editing an App
  • Deleting an App