Save Revolut card for off-session automatic renewals#16
Merged
Conversation
When a subscription has auto_renewal_enabled, pass savePaymentMethodFor=merchant to the Revolut card widget so the card is saved for merchant-initiated (off-session) automatic renewals. The subscription payment flow loads the subscription to determine whether to save the card. Companion to LNVPS/api #160.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Companion to LNVPS/api#160 (Fixes LNVPS/api#159).
Summary
When a subscription has
auto_renewal_enabled, passsavePaymentMethodFor: 'merchant'to the Revolut card widget so the customer's card is saved for merchant-initiated (off-session) automatic renewals. The backend then captures the saved payment method on webhook completion and charges it automatically when the subscription is expiring.Changes
RevolutPayWidgetgains an optionalsaveCardprop; when set,cardField.submit(...)includessavePaymentMethodFor: 'merchant'.SubscriptionPaymentFlowloads the subscription and enablessaveCardwhenauto_renewal_enabledis true.Notes
Card saving requires the embedded checkout widget (already used here) — the hosted checkout page does not support it. Validated end-to-end against the Revolut sandbox: the widget with
savePaymentMethodFor: 'merchant'saves the card, after which the backend charges it off-session successfully.