#binod-qs
1 messages ยท Page 1 of 1 (latest)
I am using paymentIntent API. looks like it doesnt support decimal values?
you mean cents?
the amount you pass to create the Payment Intent is in cents
so basically if you want to charge let's say 10.55USD you would pass 1055 as the amount
unfortunately that's not possible
why not?
it's how our API was designed
Would banks even let you charge 0.3 of a cent?
what's the minimum amount for application fee
because product could be of 1 USD and application fee is 5%
for my application
I think these are questions out of the scope of this channel. you could contact support https://support.stripe.com/?contact=true for more info
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
I would be happy to answer any API implementation related questions
what does this error means in API Your destination account needs to have at least one of the following capabilities enabled: transfers, legacy_payments
what is the request Id that generated this error? you can find the request id like so https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Is it possible to test in development mode?
yes
how?
I don't understand the question
How do I enable connect account in dev mode?
since it's an express account, you could go to the Express Account Dashboard and fill in the missing information there
yes sure
for subscription payment, does it support IDeal payment?
yes Ideal works fine with Invoicing
const createSubscribeSession = async data => { const subscription = await stripe.subscriptions.create({ customer: data.stripe_cus_id, items: [ { price: data.plan_id } ], payment_behavior: 'default_incomplete', expand: ['latest_invoice.payment_intent'] }); return { subscription_id: subscription.id, payment_intent_id: subscription.latest_invoice.payment_intent.id, expiry_date: subscription.current_period_end, clientSecret: subscription.latest_invoice.payment_intent.client_secret }; };
This is my code..It doesnot display Ideal payment option..
Only display card payment
Im using PaymentElement with clientSecret
because the payment intent doesn't have the iDeal configured as a payment method
and one of the stripe support staff told me that IDeal is not supported in subscription
could you help me on configuring iDeal payment method
you can add this https://stripe.com/docs/api/subscriptions/create#create_subscription-payment_settings-payment_method_types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
and pass ideal to it
this way the Payment Intent that is generated for the latest_invoice would have the right configuration to support iDeal
I had tried this there was some kind of error
I will try again
Are recurring payments automatically charged?
okay, after successful payment I need to update some data in my application. How do I handle that?
okay, thanks for the help