#Enrique Alfaro - card payments
1 messages · Page 1 of 1 (latest)
Hi 👋
This forum is specific to developers and API questions. We don't really have information on fees. I'm guessing you've already seen this: https://stripe.com/pricing
For more details on what fees Stripe collects in specific situations you can write in to https://support.stripe.com
I will be happy to answer any API integration questions though
Okay great
How based on API requests can I configure an MFA on a user that's gonna pay in stripe, or how is the procedure done or is anything established?? For example, I designed the payment screen and in order to avoid intrusions I would like to add an MFA layer... how does stripe in API and dev can help me out here?
No, Stripe does not offer authentication outside of users logging into their Stripe accounts. That sort of authentication of your users would need to be handled by your integration.
Oh ok, but maybe I can configure a validation for the CVV of the card that goes through the API?
Just as an idea
We would handle that if you are using Stripe.js to collect payment method data on your front-end
But we spell this out much more clearly in our public docs. I know there is a lot of information there and it can be overwhelming but it's a good place to start when considering what options are available to your integration: https://stripe.com/docs/payments
Enrique Alfaro - card payments
oh great thanks
also... when adding new users to our app, if they already have a Stripe account, how can we connect their account to our session account inside our app... it can be done by the Oauth specs?
Also a question on this topic everytime that we execute stripe.charges on the api is it possible to ask the user for his CVV on every purchase as a security measure?
I'm sorry this just got really confusing. Who is asking what here?
Sorry we are part of the same team I just wanted to add more context on the questions should I open a new conversation?
No, lets keep it here
when adding new users to our app,
What is this scenario? Are you planning on creating a Connect app?
And I'm not sure about CVV as a security measure. If you use Stripe.js and the Payment Element we will collect and screen that. You can see what that would look like here: https://stripe.com/docs/payments/payment-element
I can give a little more context on this, so we are creating customers on our app through the api with stripe.customers.create, but what if the customer already has an account with stripe is there a way that he can pay in our app with his balance with his account how does this work we are a bit confused
A Customer is entirely separate from an Account in Stripe.
What is the scenario where you would want your customers to be able to pay with their Stripe balance?
Oh okay they are separate things, we were just thinking that if the customer already has an account with stripe and has a balance in there he could be able to pay with his balance instead of capturing his card
oh i see...