#nadia

1 messages · Page 1 of 1 (latest)

pseudo kindleBOT
wild swan
#

Do you have a specific example to share?

#

Generally, 3DS can be requested on any payment yes. You can build your integration to utilise APIs to optimise for that

dull relic
#

hey @wild swan thanks for reaching out
let me search !

#

stripe.subscriptionSchedules.create({ customer: customerId, start_date: startDate, end_behavior: 'release', metadata, phases: [ { items: [{ price_data: { currency: 'EUR', // ISO 4217 CURRENCY CODES product: productId, recurring: { interval: 'month' }, unit_amount: amount // decimal }, quantity: 1 }], iterations: 1, metadata }, ], default_settings: { default_payment_method: paymentMethodId } });

#

here is how im creating the subscription schedule

wild swan
#

Sure, looks pretty normal. What's the ID of that schedule?

#

What happens when to the schedule hits the start_date? I assume 3DS is requested which is the issue you're asking about?

dull relic
#

i have no 3ds request

#

should i look at something in particular please ?

#

expand a field ?

wild swan
#

Can you elaborate on what the actual issue is?

#

is there a 3ds authentification when registering with a 3ds card please ?
Not sure what this means

dull relic
#

yess sorry

#

when i create a subscription schedule with a 3ds card, 3ds is not requested
is it because the subscription schedule starts next month ? or should i always catch a 3ds request ?

#

how will i know if there is a 3ds request after creating the sub schedule please ?

wild swan
#

Yes the actual subscription won't be created until the start_date specified. In that case, no payment attempt (if the subscription requires it) is attempted until then

wild swan
dull relic
#

okayyy thank you 🙏

#

should i listen to a specific webook then ?

wild swan
#

So you can create your schedule to start in the future, fast-forward the clock to that date and see what unfolds

dull relic
#

thanks a lot
im checking it !