#anarkali_api

1 messages · Page 1 of 1 (latest)

cerulean sandalBOT
#

👋 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.

stable oasis
#

Hellow

queen cloak
#

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.

stable oasis
#

yes but in PaymentIntent creation object we cant see RequestMulticapture property

#

where we get that

queen cloak
#

is your account on IC+ pricing? and if not, did you request access to the multi capture feature?

stable oasis
#

that we will do , but first we need to check that property

queen cloak
#

I don't understand your question, sorry.

stable oasis
#

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 ?

queen cloak
#

but if you don't have access to that feature, then it won't work...

cerulean sandalBOT
south owl
#

👋 taking over for my colleague. Let me know if there's any follow-up Qs I can answer!

stable oasis
#

no its not avilable

#

what do we need to do to get that

stable oasis
#

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

south owl
#

did you get approval to use multicapture?

stable oasis
#

not yet

worldly rampart
#

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