Stopping renewal on subscription

Hi, we had a case where one of our users wanted us to stop renewing his subscription in our app since he was unable to do it himself.

Is there a way for us to stop the auto renewal?

Kind regards Ondřej Leitmančík

The SwiftUI for Storekit .manageSubscriptionsSheet() view modifier exposes a complete in-app subscription management interface that allows you to enable the user to cancel an active subscription or select a new subscription from your app's subscription group from within your app.

.manageSubscriptionsSheet(
    isPresented: $presentingSubscriptionSheet,
    subscriptionGroupID: ProductIdentifiers.subscriptionGroupID
)

Hope this helps.

Is there a way for us to stop the auto renewal?

No.

(Well, maybe if they send you their Apple ID password etc...)

Stopping renewal on subscription
 
 
Q