#Jörgen
1 messages · Page 1 of 1 (latest)
how would that be constructed if I had raw card details?
or can i Simply post them?
or a bank account
Do you have the raw card detail? Normally you would need to collect it via frontend
exploring options. If I have the card details, can I just use the node sdk to add the raw details or would they need to be tokenized somehow?
They are better to be tokenized. It's PCI-DSS violated if you ever have card information stored on your server
ok, the end user would have details about their card in our app. If I wanted to create a token of this, how would I go about it?
It is going to be an old integration: https://stripe.com/docs/payments/accept-a-payment-charges?platform=web&client=html#web-create-token here is how you can tokenize on client-side before sending to severside
would there be another way. could I have the user do this from the dashboard?
You mean your app's dashboard right? You will still need to tokenize the card information anyway, before sending to your server
was thinking if there were pre-buitl froms for it. like identity verification. to add external accounts to a stripe connect account
do you know if there are other sdk:s for the tokenization. based on the raw card details. we would not have them in a stripe checkout form.
For web unfortunately no, that's the standard way to tokenize card
can you verify my understanding about the create card endpoint https://stripe.com/docs/api/external_account_cards/create#account_create_card
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Sure, what's the Q
I must post a token no? could I post the card payload (as for creating external bank account?)
No you shouldn't pass the raw card data. First tokenise with Stripe.js, collecting payment details via Elements then use the token to create the account
What are you trying to do?
just trying to wrap my head around how i would store an external card account. Let's say I have the card details in plain text in an app, how would I go about tokenizing those details. In that case i would not be in web
Do you have the necessary PCI compliance to be handling raw card data like that? https://stripe.com/docs/security/guide
What do you mean by app? Is this a mobile native application, and not web?
yes, native.
Then you should use our native mobile SDKs to collect payment details and tokenise
But our hosted Connect onboarding flow should support collecting external account data form your users. You shouldn't need to build this yourself
we do initate the connect accounts programaticly. but there should be somewhere to add the cards right?