OwlMetry
CLI

Apps

Create, list, and manage apps within projects from the CLI.

Apps represent a specific platform build within a project. Each app has a platform (apple, android, web, backend) and an optional bundle identifier used for SDK validation.

List apps

owlmetry apps list [--project-id <id>]

Lists all apps accessible to the authenticated team. Optionally filter by project.

FlagRequiredDescription
--project-id <id>NoFilter results to a specific project UUID
# All apps
owlmetry apps list

# Apps in a specific project
owlmetry apps list --project-id 550e8400-...

View an app

owlmetry apps view <id>

Shows app details including platform, bundle ID, and client key.

ArgumentDescription
<id>App UUID

Create an app

owlmetry apps create --project-id <id> --name <name> --platform <platform> [--bundle-id <bundleId>]
FlagRequiredDescription
--project-id <id>YesParent project UUID
--name <name>YesDisplay name for the app
--platform <platform>YesOne of: apple, android, web, backend
--bundle-id <bundleId>ConditionalRequired for apple, android, and web platforms. Not used for backend.

Platforms

PlatformDescriptionBundle ID
appleiOS, iPadOS, macOS appsRequired (e.g., com.example.myapp)
androidAndroid appsRequired (e.g., com.example.myapp)
webWeb applicationsRequired (e.g., com.example.webapp)
backendServer-side servicesNot applicable
# iOS app
owlmetry apps create \
  --project-id 550e8400-... \
  --name "My iOS App" \
  --platform apple \
  --bundle-id com.example.myapp

# Backend service
owlmetry apps create \
  --project-id 550e8400-... \
  --name "API Server" \
  --platform backend

A client API key is automatically generated when an app is created. The key is returned in the response and stored on the app record.

Update an app

owlmetry apps update <id> --name <name>

Only the app name can be updated. Bundle IDs are immutable after creation.

Argument / FlagRequiredDescription
<id>YesApp UUID
--name <name>YesNew app name

JSON output

All app commands support --format json for machine-readable output:

owlmetry apps list --format json
owlmetry apps view <id> --format json

Ready to get started?

Install the CLI and let your agent handle the rest.