We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
payment_method_collection
1 parent 9b1b011 commit b4596aeCopy full SHA for b4596ae
firestore-stripe-payments/functions/src/index.ts
@@ -145,6 +145,7 @@ exports.createCheckoutSession = functions
145
consent_collection = {},
146
expires_at,
147
phone_number_collection = {},
148
+ payment_method_collection = 'always'
149
} = snap.data();
150
try {
151
logs.creatingCheckoutSession(context.params.id);
@@ -204,6 +205,7 @@ exports.createCheckoutSession = functions
204
205
sessionCreateParams.payment_method_types = payment_method_types;
206
}
207
if (mode === 'subscription') {
208
+ sessionCreateParams.payment_method_collection = payment_method_collection
209
sessionCreateParams.subscription_data = {
210
trial_from_plan,
211
metadata,
0 commit comments