CreateAppBody

Request body for creating an App.

Definition

TypeScript
interface CreateAppBody {
  workspaceId: string;
  name: string;
  description?: string | undefined;
  handle?: string | undefined;
  publicAccess?: boolean | undefined;
}

Fields

FieldTypeNotes
workspaceIdstringrequired — Workspace that will own the new app.
namestringrequired — App name
descriptionstring | undefinedoptional — App description
handlestring | undefinedoptional — URL handle (auto-generated from name if omitted)
publicAccessboolean | undefinedoptional — When true (default), the deployed app is reachable without auth; when false, the route worker enforces auth.