#junaid-stripe-qs
1 messages · Page 1 of 1 (latest)
hello, most of your questions are answered in Stripe docs.
are you building both the frontend and backend portions? or just frontend?
I have just build a front end, for now, where we have packaged our data, and console.logging all the input from data, now we are stuck on the backend portion on how we can create the user on stripe based on the information they have put in the form.
so some helpful references for you to peruse:
This is the Stripe API reference for all the API calls you can make from your backend: https://stripe.com/docs/api/
That shows you how your backend code can create a Customer object (that is what you need)
and second, reference a payment guide like https://stripe.com/docs/payments/accept-a-payment
or a Stripe Sample to see all the code integrated end to end: https://github.com/stripe-samples/accept-a-payment (the client and server portions)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you for this
I will look into this
Since, this is a startup, and the backend developer is busy we have to switch around our duties, so i am responsible for integrating this stripe payments I have some specific questions that my backend developer asked me to research on. I was wondering if I can ask those, for some clarifications
sure you can ask, I can try answer or point you to other resources
We want to tie customer account to the organizational accounts, set recurring subscriptions and plans. Do you guys have a method that uses webhook to get usage, that would help us.
Any resources you can provide us with account information tokenization and how secure that is (since the client side will generate a token with Stripe using our public keys, then send to backend to actually process using our private secure keys)