#hari_api

1 messages ยท Page 1 of 1 (latest)

high swanBOT
#

๐Ÿ‘‹ 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/1336703281891770449

๐Ÿ“ 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.

odd raptorBOT
proper rivet
#

Hi ๐Ÿ‘‹ my understanding is that handling raw card details in any part of your integration requires PCI compliance, even in your frontend.

We don't have a frontend function for creating a Token without using our Elements. You would need to send those details to your backend and create the Token from there:
https://docs.stripe.com/api/tokens/create_card

Is this a new integration you're building? Because if so, we typically no longer recommend working with Tokens directly. Instead we usually suggest using our UI Elements to create Payment Methods in a PCI compliant fashion.

glad junco
#

I'm opting for a custom form because stripe card elements won't let me to fill sensitive card details into it.

I need to integrate the custom form with a generic magnetic card reader. The reader will read the card details and fill the custom form with raw card data.

I must send the raw card details to Stripe to create a token. My backend can handle charging the card using the token from stripe.

proper rivet
#

Yes, our Elements are protected for PCI compliance reasons, and you are not able to insert values into them.

My understanding is your system will need to be PCI compliant, and that you'll need to send those card details to your backend to create a Token.

glad junco
#

Isn't there any APIs or stripe methods that take raw card details in frontend and give back tokens?