#mounika_api
1 messages ¡ Page 1 of 1 (latest)
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.
- mounika_api, 1 day ago, 8 messages
- mounika_api, 1 day ago, 28 messages
- mounika_best-practices, 2 days ago, 18 messages
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1260973081053364344
đ Have more to share? Add details, code, screenshots, videos, etc. below.
You're not calling the right endpoint
You're making a call to update the payment intent
Not to increment authorization
You're calling POST /v1/payment_intents/:id instead of POST /v1/payment_intents/:id/increment_authorization
I see now Thanks, I have one more question https://dashboard.stripe.com/test/logs/req_g63xjosJTNwBMA?t=1720705844 For the payment intents using multi capture (Can i not do a transfer on the captured amount?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Yeah that's one of the things called out at the top of the page in the guide: https://docs.stripe.com/payments/multicapture#availability
Okay when we want to do multi capture on a payment intent (The only option is to use the https://docs.stripe.com/api/payment_intents/create#create_payment_intent-transfer_data ) and transfer the money to one connecting account on all captures. We cannot use transfer_group on multi capture as that does not work in this scenario ?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The issue is in using the source_transaction param, specifically (per the guide I linked)
Without the source_transaction i cannot attach a transfer to a charge right ?
correct
because there's multiple w/ multicapture
You can transfer funds, you just can't do so with source_transaction
Got it, https://dashboard.stripe.com/test/logs/req_4rHXjiag0glIVz?t=1720710668 One more q I removed the source_transaction I am seeing insufficeint balance (Is that trying to transfer from the account, or trying to get the money from card again?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
It's your platform with insufficient balance
That's the problem with not using source_transaction
You have to check your available balance prior to attempting a transfer: https://docs.stripe.com/api/balance/balance_retrieve
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Makes sense, I am good now. Thanks a lot
No problem
Hi, i have a huge problem.. I've activated all payment methods but on my checkoutpage there's only Apple Pay, Link & the creditcard fields... I'm gratefull for help guys