#brotzka_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/1331265086261825597
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
Hi @modest citrus ๐
Is it possible to get the information if a credit card is rated premium or not?
not really
maybe you could use a combination of brand funding and network to charge different fees
https://docs.stripe.com/api/payment_methods/object#payment_method_object-card
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay.. Stripe Charges 1.5% for standard cards and 1.9% for premium cards. I need a way to identify if Stripe charged based on premium or not, because this is relevant for invoicing our customers.
Is there another option I could figure this out? Ideally coming from transfers..
Okay.. Stripe Charges 1.5% for standard cards and 1.9% for premium cards. I need a way to identify if Stripe charged based on premium or not, because this is relevant for invoicing our customers.
Unfortunately we don't know about pricing questions here on Discord
Is there another option I could figure this out? Ideally coming from transfers..
Transfers happen after a customer is charged
Transfers happen after a customer is charged
That is okay. The invoices I meant is created at the end of a month and should contain fees for all charges. Example:
Customer A has 10 charges during the month, which would result in a total amount of Stripe payment fees of 50$ Customer B has 5 charges resulting in 25$ Stripe payment fees.
Now at the end of the month, I want to create an invoice for Customer C, invoicing him 75$. But therefore I need to know the premium status^^
you can get the Actual Stripe fee https://docs.stripe.com/expand/use-cases#stripe-fee-for-payment for each payment
All right. I'll try this out. Thank you! ๐