#anarkali_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/1384860653990187018
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- anarkali_api, 3 hours ago, 11 messages
- anarkali_api, 5 days ago, 8 messages
- anarkali_api, 5 days ago, 13 messages
Hellow
hi there!
this is explained here: https://docs.stripe.com/payments/multicapture
Multicapture is part of the functionality we offer to users on IC+ pricing. If you’re on blended Stripe pricing and want access to this feature, contact Stripe Support.
yes but in PaymentIntent creation object we cant see RequestMulticapture property
where we get that
is your account on IC+ pricing? and if not, did you request access to the multi capture feature?
that we will do , but first we need to check that property
I don't understand your question, sorry.
PaymentIntentCreateOptions paymentIntentCreateOptions = new PaymentIntentCreateOptions
{
Amount = Convert.ToInt64(request.Amount * 100),
Currency = request.Currency,
PaymentMethod = request.SecureCardData,
Confirm = true,
CaptureMethod = "manual",
Metadata = new Dictionary<string, string>()
{
{ "OrderId", request.OrderId },
{ "CustomerId", request.CustomerId },
{ "ExternalTransactionId", request.MerchantReference }
},
SetupFutureUsage = "off_session"
};
paymentIntent = paymentIntentService.Create(paymentIntentCreateOptions, this.requestOptions);
i have this code
where should i write requestMultipleCpature ?
did you read the documentation link I shared? it shows exactly what you want: https://docs.stripe.com/payments/multicapture?platform=web&ui=elements#create-and-confirm
but if you don't have access to that feature, then it won't work...
👋 taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
all documents i know
but i am not able to see that property in paymentIntent
what to so to see that
RequestMulticapture = "if_available",
this property i cant see our side
did you get approval to use multicapture?
not yet
Hi there 👋 I'm jumping in as my teammate needs to step away soon.
Is the concern here that you aren't seeing the related fields needed for using MultiCapture within the version of our stripe-dotnet SDK that you're using? If so, can you double check what version you're using?
It looks like support for MultiCapture was added to the SDK in version 42.8.0, so you'll have to at least be on that version. However, it's important to note that since .NET is strongly typed, so our SDK versions are pinned to specific versions of our API. Changing the version of the SDK you're using may change the version of our API that your requests use.
https://github.com/stripe/stripe-dotnet/releases/tag/v42.8.0