#j_r_e
1 messages · Page 1 of 1 (latest)
The price for this Subscription is 0, so it's expected that there is no PaymentIntent since there is nothing to pay.
In this case the Subscription will contain a pending_setup_intent for you to collect a payment method: https://stripe.com/docs/api/subscriptions/object?lang=dotnet#subscription_object-pending_setup_intent
yes, at susbcription creation, there is nothing to pay, but at the end of the month we would need to propose an invoice based on its usage
in order to retrieve pending_setup_intent from subscription creation, do I need to ask for .addAllExpand(Arrays.asList("pending_setup_intent")) ? because as of today the JSON Responde do not contain any clientSecret details
in order to retrieve pending_setup_intent from subscription creation, do I need to ask for .addAllExpand(Arrays.asList("pending_setup_intent")) ?
Yes
ok
If you look at the link I shared abve, it says expandable
perfect thanks, and it will contain the clientSecret in it
Yes
Thanks Soma that's clear 😉 will work on it ! have a good day !