list_iap_products

List all in-app purchases and subscription groups for a project.

Parameters

ParameterTypeRequiredDescription
projectIdstringYesThe project ID
filterstringNo"all", "iaps", or "subscriptions" (default: all)

Example Usage

Natural Language Promptstext
"List all my in-app purchases"
"Show me the subscriptions in this project"
"What IAPs do I have configured?"

Response

{
"success": true,
"iaps": [
{
"id": "iap_abc123",
"productId": "com.app.coins_100",
"name": "100 Coins",
"productType": "CONSUMABLE",
"state": "APPROVED",
"syncStatus": "synced"
}
],
"subscriptionGroups": [
{
"id": "group_xyz",
"referenceName": "Premium",
"subscriptions": [
{
"id": "sub_123",
"productId": "com.app.premium_monthly",
"name": "Premium Monthly",
"subscriptionPeriod": "ONE_MONTH",
"groupLevel": 1
}
]
}
]
}