apple_list_iap
Retrieve in-app purchase details for iOS apps to manage product listings and monetization strategies within the App Store Connect platform.
Instructions
List in-app purchases for an app
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID |
Implementation Reference
- src/apple/tools.ts:1098-1107 (handler)The tool definition for apple_list_iap, including its schema and handler implementation.
const listIAP: ToolDef = { name: 'apple_list_iap', description: 'List in-app purchases for an app', schema: z.object({ appId: z.string().describe('App ID'), }), handler: async (client, args) => { return client.request(`/apps/${args.appId}/inAppPurchasesV2`); }, };