#binod-qs

1 messages ยท Page 1 of 1 (latest)

small ember
#

๐Ÿ‘‹ happy to help

stone crow
#

I am using paymentIntent API. looks like it doesnt support decimal values?

small ember
#

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

stone crow
#

what if I want to charge 10.3 cents?

#

as an application_fee

small ember
#

unfortunately that's not possible

stone crow
#

why not?

small ember
#

it's how our API was designed

quartz pelican
#

Would banks even let you charge 0.3 of a cent?

stone crow
#

what's the minimum amount for application fee

#

because product could be of 1 USD and application fee is 5%

#

for my application

small ember
#

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

#

I would be happy to answer any API implementation related questions

stone crow
#

what does this error means in API Your destination account needs to have at least one of the following capabilities enabled: transfers, legacy_payments

small ember
stone crow
#

req_26sPpTijyBcORw

#

I am using destination charge

small ember
#

the Connect Account is not compliant

#

they need to update the person's information

stone crow
#

Is it possible to test in development mode?

small ember
#

yes

stone crow
#

how?

small ember
#

I don't understand the question

stone crow
#

How do I enable connect account in dev mode?

small ember
#

since it's an express account, you could go to the Express Account Dashboard and fill in the missing information there

stone crow
#

okay, I will check it.

#

One more quesiton

small ember
#

yes sure

stone crow
#

for subscription payment, does it support IDeal payment?

small ember
#

yes Ideal works fine with Invoicing

stone crow
#

I mean subscription API.

#

what do you mean by invoicing?

small ember
#

it's the same

#

it's all part of the Billing product

stone crow
#

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

small ember
#

because the payment intent doesn't have the iDeal configured as a payment method

stone crow
#

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

small ember
#

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

stone crow
#

I had tried this there was some kind of error

#

I will try again

#

Are recurring payments automatically charged?

small ember
#

yes

#

that can be changed if you choose the collection method to be send_invoice

stone crow
#

okay, after successful payment I need to update some data in my application. How do I handle that?

small ember
stone crow
#

okay, thanks for the help