create_revenuecat_app

Create a new app in RevenueCat for iOS (App Store) or Android (Play Store).

Parameters

ParameterTypeRequiredDescription
projectIdstringYesThe project ID
namestringYesApp name (e.g., "My App (iOS)")
typestringYes"app_store", "play_store", or "amazon"
bundleIdstringConditionaliOS bundle identifier (required for app_store)
packageNamestringConditionalAndroid package name (required for play_store)

Example Usage

Natural Language Promptstext
"Create a RevenueCat app for iOS"
"Add my Android app to RevenueCat"
"Set up RevenueCat for com.mycompany.myapp"

Response

{
"success": true,
"app": {
"id": "app_abc123",
"name": "My App (iOS)",
"type": "app_store",
"bundle_id": "com.mycompany.myapp",
"created_at": "2024-01-15T10:30:00Z"
}
}