apple_delete_iap
Remove an in-app purchase from an Apple App Store listing to manage your app's monetization features.
Instructions
Delete an in-app purchase
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| iapId | Yes | In-App Purchase ID |
Implementation Reference
- src/apple/tools.ts:1152-1155 (handler)The handler function that performs the DELETE request for the in-app purchase.
handler: async (client, args) => { await client.request(`${V2_BASE}/inAppPurchases/${args.iapId}`, { method: 'DELETE' }); return { success: true }; }, - src/apple/tools.ts:1149-1151 (schema)The schema definition for the apple_delete_iap tool, specifying the iapId parameter.
schema: z.object({ iapId: z.string().describe('In-App Purchase ID'), }),