#Sankar
1 messages ยท Page 1 of 1 (latest)
๐ How can I help?
I am using StripeIntent API to process payments
I need to pass fulfillment_date to this API, how do I do that?
Is there any specific parameter to pass this date?
If you wish to additional data for your own references, you can set it under metadata field of SetupIntent: https://stripe.com/docs/api/setup_intents/create#create_setup_intent-metadata
This is something not for my reference.. this is for stripe to release reserve using this fulfillment_date which is the event date
Can you share where you see fulfillment_date parameter? I can't find it in our API
me either, but Stripe sales agent keep saying that there is a parameter to do that ๐ฆ
Here is the sales agent email
My Credit team followed up and shared the following:
"Yep so they are still populating it through meta_data rather than the actual fulfillment_date charge object.
I see! Can you share your account ID, so that I can take a closer look at how your integration works? You can find your account ID by logging in to https://dashboard.stripe.com/settings/account. It'll be in the upper right hand corner and looks like acct_123
Please share your account ID (acct_xxx) in text, so that I can have a check on your account
acct_1MqP6iG1YwqdQiBz
Thanks for sharing! fulfillment_date is only available in Payment Intent, but not Setup Intent
You will be able to find it here: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-fulfillment_date
Okay, thank you.. I will check this out
No problem! Happy to help ๐
I use c# coding but still not seeing that parameter
fulfillment_date is an undocumented parameter. You may refer to this guide about how to set undocumented parameter in Stripe .NET library: https://github.com/stripe/stripe-dotnet#how-to-use-undocumented-parameters-and-properties
More specifically, using AddExtraParam() function in the request options
very helpful, let me try this..