Nikko Vacci
Nikko Vacci

Reputation: 81

Are App Store in-app purchases refundable?

If the user makes in-app purchase in an iOS application, is it possible to to request a refund in the application itself? Does Apple allow this?

Upvotes: 0

Views: 182

Answers (2)

Jim Bray
Jim Bray

Reputation: 788

It’s not possible. However, if you’re worried about accidental purchases, you can always place a link to this page somewhere in your app. Request A Refund from App Store

Upvotes: 1

Kazunori Takaishi
Kazunori Takaishi

Reputation: 2398

It is possible if the iOS app is running on iOS 15+.

A new function named beginRefundRequest(in:) was added to StoreKit in iOS 15.0+. By calling this from within the app (e.g., from the Account Settings or Help menu), the system will display the following refund request sheet. On this sheet, you can select the Refund Request item and request a refund.

enter image description here

Upvotes: 1

Related Questions