#vishnu_docs
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/1346437632456003674
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- vishnu_api, 58 minutes ago, 24 messages
hi there!
because card detail already stored in our database
can you clarify what you mean by "card detail" exactly? are you talking about the raw numbers?
yes 16 digit card number and cvv
is your business PCI compliant? https://stripe.com/guides/pci-compliance
our project is saas based project
where we integrate multiple type of payment gateway
on stripe we use charged api
where we send card detail also fro process payment
but i think it will deprecate soon
so want migrate to payment intent stripe
can you answer my above question?
if your business is not PCI compliant, then you are not allowed to store the raw card numbers on your end
and you are not allowed to create a PaymentIntent with these numbers
on db we store last 4 digit number
you said this previously:
yes 16 digit card number and cvv
its my mistake, not check in db
I don't understand sorry. you said in your first question:
because card detail already stored in our database
like I said, you are only allowed to create a PaymentIntent by providing the card numbers yourslef if you are PCI compliant.
so are you PCI compliant?
no
then you are not allowed to store the credit card numbers in your own database
and won't be able to use Stripe like this
I don't understand your question, sorry
if you have a PaymentMethod object in Stripe, then you can find the last 4 here: https://docs.stripe.com/api/payment_methods/object#payment_method_object-card-last4
we want last 4 digit and expiry date when payment successfull
and the expiry is here: https://docs.stripe.com/api/payment_methods/object#payment_method_object-card-exp_month
We noticed that the iframe displays where the user fills in card details for payment. Is there any option in JavaScript to pass the card number directly into this iframe?
you can create a PaymentIntent on the backend and directly set the card numbers yourself. however, this is only possible if you are PCI compliant.
since you are not PCI compliant, the only option if for users to type the card number themselves in the Stripe iframe.
ok