iOS 16 recurring payment configuration not reflecting in UI

We are integrating iOS 16 recurring payments in our app, everything works fine but we have a few questions

Question 1

let recurringPaymentRequest = PKRecurringPaymentRequest(
        paymentDescription: "Pro Membership",
        regularBilling: regularBilling,
        managementURL: url
      )

we assume managementURL is supposed to come in the user's wallet where he/she can tap to change the recurring payment option to our backend, but in the wallet, the transaction appears without this URL and have no indication that it is a recurring payment, Can someone guide what we missed

Question 2 For apps that only have apple pay on mobile, managementURL can open the app as a deep link from the Wallet app and the user can update or delete the payment method for the automatic reload payment from the app directly,

Question 3 For cancellation, the recurring payment app should have some UI where the user can tap which hit our backend and remove the apple pay merchant token from our system and apply cancellation business logic, no apple API involves in the cancellation of recurring payment

https://support.apple.com/en-us/HT213041

In this article they explained "View preauthorized payments in Apple Wallet" very well. So in my case we are able to do recurring payment with apple pay but not able to see preauthorized payments Options in Apple Wallet App. under Card Details? Please guide us in this regard what we missed

iOS 16 recurring payment configuration not reflecting in UI
 
 
Q