Apps¶
Manage applications within your RevenueCat project. Each app corresponds to a platform-specific distribution (App Store, Play Store, Stripe, etc.).
Available Commands¶
| Command | Description |
|---|---|
rc apps list |
List all apps in the project |
rc apps get |
Get details for a specific app |
rc apps create |
Create a new app |
rc apps update |
Update an existing app |
rc apps delete |
Delete an app |
rc apps api-keys |
View API keys for an app |
rc apps list¶
Optional Flags¶
| Flag | Description | Default |
|---|---|---|
--output |
Output format | json |
--limit |
Maximum number of results | 20 |
--starting-after |
Cursor for pagination | -- |
--all |
Fetch all pages automatically | false |
rc apps get¶
Retrieve details for a single app.
Required Flags¶
| Flag | Description |
|---|---|
--app-id |
The app ID to retrieve |
rc apps create¶
Create a new app in the current project.
Required Flags¶
| Flag | Description |
|---|---|
--name |
Display name for the app |
--type |
Store type |
App Types¶
| Type | Description |
|---|---|
app_store |
Apple App Store |
play_store |
Google Play Store |
stripe |
Stripe |
amazon |
Amazon Appstore |
mac_app_store |
Mac App Store |
roku |
Roku Channel Store |
web |
Web |
Optional Flags¶
| Flag | Description |
|---|---|
--bundle-id |
Bundle identifier (iOS/macOS) |
--package-name |
Package name (Android) |
--output |
Output format |
Examples¶
rc apps update¶
Update an existing app's properties.
Required Flags¶
| Flag | Description |
|---|---|
--app-id |
The app ID to update |
Optional Flags¶
| Flag | Description |
|---|---|
--name |
New display name |
--output |
Output format |
rc apps delete¶
Delete an app from the project.
Required Flags¶
| Flag | Description |
|---|---|
--app-id |
The app ID to delete |
--confirm |
Skip confirmation prompt |
Warning
Deleting an app is permanent. All associated data will be lost.
rc apps api-keys¶
View the public and secret API keys for an app.
Required Flags¶
| Flag | Description |
|---|---|
--app-id |
The app ID |
Tip
Use --output minimal to get just the key values, useful for piping into scripts.