#natasha_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1438527517077016599
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there, I'm not sure what you mean by the "recurring flag", can you explain further?
Hey, so when Stripe sends payment message to Visa there are multiple indicators being set. I am referring the recurring indicator being sent to Visa here.
ok, are you using Stripe subscriptions? or are these individual Payment Intents you're creating
These are individual Payment Intents. I am not using Stripe subscriptions.
got it, so this is not something you can control on your side if you're using individual Payment Intents
Alright, so does that mean Stripe has logic at their end to set this flag based on a combination of fields we set in the paymentIntent?
correct, and if you're using off_session: true, that is the way to go about it
One more question about off_session = true. in which field should this be reflected when the paymentIntent is successful?
you can look at the status field of the payment intent, it will say "succeeded"
Yes, No I was asking about the offSession parameter, where can I see that it was set to true when a paymentIntent is created?
I don't think there's a field on the Payment Intent itself that displays that
Okay, so there is no way to verify it is being set correctly
if you're setting it with a value that the field doesn't accept, it'll throw an error
Okay, Thanks for your help