#nerdslice_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.
- nerdslice_api, 17 hours ago, 4 messages
- nerdslice_api, 1 day ago, 4 messages
đ 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/1245490732421087332
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
When you say "cash" do you mean "debit"? Or do you mean actual physical cash?
Physcial cash. So we are going to be offering a surcharge for using credit card
You would have to account for that in the overall amount of the Payment Intent. There isn't a way to separate out additional fees unfortunately.
Can I show cash price as a line item?
If not its all good.
Also can I ask about something else? How can I do a passthrough charge and deposit in their account a particular amount? E.g. If we want them to have a rate of 2.8% but we get 2.5 or 2.6% .
You can show them whatever you want by setting the reader display: https://docs.stripe.com/api/terminal/readers/set_reader_display#set_reader_display-cart-line_items
That being said, this has no effect on any underlying payments, so you would need to have a way to handle cash payments outside of Terminal
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Oh we already do that, its all good on our end.
Okay, right on.
I'm not really sure what you're asking here. Can you be more specific?
Yes, we are connect and right now we are doing integration direct, and switching to "on behalf of" so that we can control the rate the store gets. e.g. they get 2.8% with a $.10 per transaction in person fee. So what we want is to determine how much is transferred from that transaction from our account to their connect account.
You probably want to use either Application Fees with Destination charges: https://docs.stripe.com/connect/destination-charges
Or Separate Charges and Transfers, where you accept the funds from the charge and then subsequently make a Transfer (minus whatever amount you want): https://docs.stripe.com/connect/separate-charges-and-transfers
That is exact Thank you so much!
Sure thing!